2015-12-15 19:55:23 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<ProjectGuid>{73A7688A-5BD3-4F7E-ADFA-CE36C5A10E3B}</ProjectGuid>
|
|
|
|
|
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>Orchard.MediaLibrary</RootNamespace>
|
|
|
|
|
<AssemblyName>Orchard.MediaLibrary</AssemblyName>
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
8776: Upgrade Microsoft.CodeDom.Providers.DotNetCompilerPlatform to latest version (#8777)
* Upgrading projects, code generation templates and Specflow app to use Microsoft.CodeDom.Providers.DotNetCompilerPlatform 4.1.0 (latest)
* Updating csprojs not to define LangVersion separately in Release and Debug mode, setting it to "default" instead of "latest"
* Restricting C# language version to 7.3
* Downgrading SmtpMessageChannel.cs to C# 7.3
* Setting MvcBuildViews = false in the remaining csprojs that reference DotNetCompilerPlatform, like the others
* Setting RoslynCopyToOutDir = false in each csproj that references DotNetCompilerPlatform
See https://github.com/aspnet/RoslynCodeDomProvider?tab=readme-ov-file#build-time-options
- We only need Orchard.Web to include the Roslyn tools in its bin folder, the other csprojs only need the DLL reference
- We could simply remove the targets import in these csprojs, but it will be re-added when the package is updated, so this is cleaner/easier
* We don't actually need <MvcBuildViews>false</MvcBuildViews> in csprojs
* Orchard.Web: Copying Roslyn files to the output folder using the provided target (CopyRoslynCompilerFilesToOutputDirectory) instead of our custom one
* Orchard.proj: Factoring out a part of the Compile target into the DevCompile target and removing BuildViews target
- For a simple local build (just to validate that the solution builds), we don't actually need that second build that copies files to the output folder.
- CI builds (Test, Spec, etc.) that operate on the build output folder are unaffected, because Compile calls DevCompile
- The BuildViews target is not really necessary, just call any other target (Compile, DevCompile, Spec, etc.) with "/p:MvcBuildViews=true"
* Removing incorrect comment about Razor IntelliSense
* Removing VBCodeProvider configuration from Web.config files
* Getting rid of Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets imports and associated configuration except in Orchard.Web.csproj
* Adding VB compiler configuration to src/Orchard.Web/Web.config, because it would be readded on rebuild by the imported target anyway
2024-04-04 22:35:29 +08:00
|
|
|
|
<LangVersion>7.3</LangVersion>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<FileUpgradeFlags>
|
|
|
|
|
</FileUpgradeFlags>
|
|
|
|
|
<OldToolsVersion>4.0</OldToolsVersion>
|
|
|
|
|
<UpgradeBackupLocation />
|
|
|
|
|
<TargetFrameworkProfile />
|
|
|
|
|
<UseIISExpress>false</UseIISExpress>
|
|
|
|
|
<IISExpressSSLPort />
|
|
|
|
|
<IISExpressAnonymousAuthentication />
|
|
|
|
|
<IISExpressWindowsAuthentication />
|
|
|
|
|
<IISExpressUseClassicPipelineMode />
|
|
|
|
|
<UseGlobalApplicationHostFile />
|
2018-08-10 03:22:42 +08:00
|
|
|
|
<Use64BitIISExpress />
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<NuGetPackageImportStamp>
|
|
|
|
|
</NuGetPackageImportStamp>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<CodeAnalysisRuleSet>..\..\..\OrchardBasicCorrectness.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
8776: Upgrade Microsoft.CodeDom.Providers.DotNetCompilerPlatform to latest version (#8777)
* Upgrading projects, code generation templates and Specflow app to use Microsoft.CodeDom.Providers.DotNetCompilerPlatform 4.1.0 (latest)
* Updating csprojs not to define LangVersion separately in Release and Debug mode, setting it to "default" instead of "latest"
* Restricting C# language version to 7.3
* Downgrading SmtpMessageChannel.cs to C# 7.3
* Setting MvcBuildViews = false in the remaining csprojs that reference DotNetCompilerPlatform, like the others
* Setting RoslynCopyToOutDir = false in each csproj that references DotNetCompilerPlatform
See https://github.com/aspnet/RoslynCodeDomProvider?tab=readme-ov-file#build-time-options
- We only need Orchard.Web to include the Roslyn tools in its bin folder, the other csprojs only need the DLL reference
- We could simply remove the targets import in these csprojs, but it will be re-added when the package is updated, so this is cleaner/easier
* We don't actually need <MvcBuildViews>false</MvcBuildViews> in csprojs
* Orchard.Web: Copying Roslyn files to the output folder using the provided target (CopyRoslynCompilerFilesToOutputDirectory) instead of our custom one
* Orchard.proj: Factoring out a part of the Compile target into the DevCompile target and removing BuildViews target
- For a simple local build (just to validate that the solution builds), we don't actually need that second build that copies files to the output folder.
- CI builds (Test, Spec, etc.) that operate on the build output folder are unaffected, because Compile calls DevCompile
- The BuildViews target is not really necessary, just call any other target (Compile, DevCompile, Spec, etc.) with "/p:MvcBuildViews=true"
* Removing incorrect comment about Razor IntelliSense
* Removing VBCodeProvider configuration from Web.config files
* Getting rid of Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets imports and associated configuration except in Orchard.Web.csproj
* Adding VB compiler configuration to src/Orchard.Web/Web.config, because it would be readded on rebuild by the imported target anyway
2024-04-04 22:35:29 +08:00
|
|
|
|
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\lib\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
|
2017-12-22 04:49:53 +08:00
|
|
|
|
</Reference>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
|
|
|
|
|
</Reference>
|
2022-07-05 15:30:08 +08:00
|
|
|
|
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
2024-12-06 16:49:45 +08:00
|
|
|
|
<HintPath>..\..\..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.ComponentModel.DataAnnotations">
|
|
|
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
<Reference Include="System.Drawing" />
|
|
|
|
|
<Reference Include="System.Web.ApplicationServices" />
|
|
|
|
|
<Reference Include="System.Web.DynamicData" />
|
|
|
|
|
<Reference Include="System.Web.Entity" />
|
|
|
|
|
<Reference Include="System.Web.Extensions" />
|
2016-02-20 05:49:15 +08:00
|
|
|
|
<Reference Include="System.Web" />
|
|
|
|
|
<Reference Include="System.Web.Abstractions" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.Helpers.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<Reference Include="System.Web.Mvc, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.AspNet.Mvc.5.2.7\lib\net45\System.Web.Mvc.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.AspNet.Razor.3.2.7\lib\net45\System.Web.Razor.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Web.Routing" />
|
|
|
|
|
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.WebPages.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<HintPath>..\..\..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
<Reference Include="System.Configuration" />
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Scripts\media-library-picker.js" />
|
|
|
|
|
<Content Include="Scripts\media-library.js" />
|
|
|
|
|
<Content Include="Scripts\modal-window.js" />
|
|
|
|
|
<Content Include="Styles\Images\menu.media.png" />
|
|
|
|
|
<Content Include="Styles\menu.media-library-admin.css" />
|
|
|
|
|
<Content Include="Styles\menu.oembed-mediaproviders.css" />
|
|
|
|
|
<Content Include="Styles\orchard-oembed-admin.css" />
|
|
|
|
|
<Content Include="Styles\menu.clientstorage-mediaproviders.css" />
|
|
|
|
|
<Content Include="Styles\dialog-mode.css" />
|
|
|
|
|
<Content Include="Styles\media-library-picker-admin.css" />
|
|
|
|
|
<Content Include="Styles\Images\folders-loader.gif" />
|
|
|
|
|
<Content Include="Styles\Images\loading.gif" />
|
|
|
|
|
<Content Include="Styles\Images\processing.gif" />
|
|
|
|
|
<Content Include="Styles\orchard-clientstorage-admin.css" />
|
|
|
|
|
<Content Include="Styles\Images\ajax-loader.gif" />
|
|
|
|
|
<Content Include="Styles\orchard-mediaproviders-admin.css" />
|
|
|
|
|
<Content Include="Styles\orchard-medialibrary-admin.css" />
|
|
|
|
|
<Content Include="Web.config">
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Scripts\Web.config" />
|
|
|
|
|
<Content Include="Styles\Web.config" />
|
2018-01-19 04:36:13 +08:00
|
|
|
|
<Compile Include="Controllers\LocalizedMediaController.cs" />
|
|
|
|
|
<Compile Include="Drivers\MediaLibraryExplorerLocalizationExtensionsPartDriver.cs" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Compile Include="Drivers\VectorImagePartDriver.cs" />
|
2017-11-10 04:10:03 +08:00
|
|
|
|
<Compile Include="Extensions\ContentItemExtensions.cs" />
|
2015-12-20 03:49:13 +08:00
|
|
|
|
<Compile Include="Extensions\MediaMetaDataExtensions.cs" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Compile Include="Factories\VectorImageFactory.cs" />
|
2017-02-07 04:46:55 +08:00
|
|
|
|
<Compile Include="Handlers\MediaItemHandler.cs" />
|
2018-01-19 04:36:13 +08:00
|
|
|
|
<Compile Include="Handlers\MediaLibraryPickerFieldLocalizationExtensionHandler.cs" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Compile Include="Handlers\MediaLibrarySettingsPartHandler.cs" />
|
2016-12-02 05:14:52 +08:00
|
|
|
|
<Compile Include="Implementation\DefaultMediaUsername.cs" />
|
2018-01-19 04:36:13 +08:00
|
|
|
|
<Compile Include="MediaLocalizationMigrations.cs" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Compile Include="Models\MediaLibrarySettingsPart.cs" />
|
|
|
|
|
<Compile Include="Models\VectorImagePart.cs" />
|
|
|
|
|
<Compile Include="Models\IMediaFolder.cs" />
|
|
|
|
|
<Compile Include="MediaFileName\MediaFileNameDriver.cs" />
|
|
|
|
|
<Compile Include="MediaFileName\MediaFileNameEditorSettings.cs" />
|
|
|
|
|
<Compile Include="MediaFileName\MediaFileNameEditorViewModel.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Content Include="Module.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\..\Orchard\Orchard.Framework.csproj">
|
|
|
|
|
<Project>{2D1D92BB-4555-4CBE-8D0E-63563D6CE4C6}</Project>
|
|
|
|
|
<Name>Orchard.Framework</Name>
|
2017-06-30 03:10:51 +08:00
|
|
|
|
<Private>$(MvcBuildViews)</Private>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\..\Core\Orchard.Core.csproj">
|
|
|
|
|
<Project>{9916839C-39FC-4CEB-A5AF-89CA7E87119F}</Project>
|
|
|
|
|
<Name>Orchard.Core</Name>
|
2017-06-30 03:10:51 +08:00
|
|
|
|
<Private>$(MvcBuildViews)</Private>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</ProjectReference>
|
2017-02-07 04:46:55 +08:00
|
|
|
|
<ProjectReference Include="..\Orchard.ContentTypes\Orchard.ContentTypes.csproj">
|
|
|
|
|
<Project>{0E7646E8-FE8F-43C1-8799-D97860925EC4}</Project>
|
|
|
|
|
<Name>Orchard.ContentTypes</Name>
|
|
|
|
|
</ProjectReference>
|
2018-01-19 04:36:13 +08:00
|
|
|
|
<ProjectReference Include="..\Orchard.Localization\Orchard.Localization.csproj">
|
|
|
|
|
<Project>{FBC8B571-ED50-49D8-8D9D-64AB7454A0D6}</Project>
|
|
|
|
|
<Name>Orchard.Localization</Name>
|
|
|
|
|
</ProjectReference>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<ProjectReference Include="..\Orchard.Tokens\Orchard.Tokens.csproj">
|
|
|
|
|
<Project>{6f759635-13d7-4e94-bcc9-80445d63f117}</Project>
|
|
|
|
|
<Name>Orchard.Tokens</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="Drivers\MediaLibraryExplorerPartDriver.cs" />
|
|
|
|
|
<Compile Include="ModalAdminFilter.cs" />
|
|
|
|
|
<Compile Include="AdminMenu.cs" />
|
|
|
|
|
<Compile Include="Controllers\AdminController.cs" />
|
|
|
|
|
<Compile Include="Controllers\ClientStorageController.cs" />
|
|
|
|
|
<Compile Include="Controllers\OEmbedController.cs" />
|
|
|
|
|
<Compile Include="Controllers\FolderController.cs" />
|
|
|
|
|
<Compile Include="Drivers\AudioPartDriver.cs" />
|
|
|
|
|
<Compile Include="Drivers\OEmbedPartDriver.cs" />
|
|
|
|
|
<Compile Include="Drivers\MediaLibraryPickerFieldDriver.cs" />
|
|
|
|
|
<Compile Include="Drivers\DocumentPartDriver.cs" />
|
|
|
|
|
<Compile Include="Drivers\VideoPartDriver.cs" />
|
|
|
|
|
<Compile Include="Drivers\ImagePartDriver.cs" />
|
|
|
|
|
<Compile Include="Factories\AudioFactory.cs" />
|
|
|
|
|
<Compile Include="Factories\DocumentFactory.cs" />
|
|
|
|
|
<Compile Include="Factories\VideoFactory.cs" />
|
|
|
|
|
<Compile Include="Factories\ImageFactory.cs" />
|
|
|
|
|
<Compile Include="Factories\IMediaFactory.cs" />
|
|
|
|
|
<Compile Include="Factories\IMediaFactorySelector.cs" />
|
|
|
|
|
<Compile Include="Factories\MediaFactorySelectorResult.cs" />
|
|
|
|
|
<Compile Include="Fields\MediaLibraryPickerField.cs" />
|
|
|
|
|
<Compile Include="Handlers\MediaLibraryPickerFieldHandler.cs" />
|
|
|
|
|
<Compile Include="Handlers\MediaPartHandler.cs" />
|
|
|
|
|
<Compile Include="Drivers\MediaPartDriver.cs" />
|
|
|
|
|
<Compile Include="Migrations.cs" />
|
|
|
|
|
<Compile Include="Models\AudioPart.cs" />
|
|
|
|
|
<Compile Include="Models\FolderHierarchy.cs" />
|
|
|
|
|
<Compile Include="Models\MediaFile.cs" />
|
|
|
|
|
<Compile Include="Models\MediaFolder.cs" />
|
|
|
|
|
<Compile Include="Models\MediaLibraryExplorerPart.cs" />
|
|
|
|
|
<Compile Include="Models\ImagePart.cs" />
|
|
|
|
|
<Compile Include="Models\DocumentPart.cs" />
|
|
|
|
|
<Compile Include="Models\VideoPart.cs" />
|
|
|
|
|
<Compile Include="Models\OEmbedPart.cs" />
|
|
|
|
|
<Compile Include="Models\MediaPart.cs" />
|
|
|
|
|
<Compile Include="Models\MediaPartRecord.cs" />
|
|
|
|
|
<Compile Include="Permissions.cs" />
|
|
|
|
|
<Compile Include="Providers\ClientStorageMenu.cs" />
|
|
|
|
|
<Compile Include="Providers\OEmbedMenu.cs" />
|
|
|
|
|
<Compile Include="ResourceManifest.cs" />
|
|
|
|
|
<Compile Include="Security\MediaAuthorizationEventHandler.cs" />
|
|
|
|
|
<Compile Include="Services\IMediaLibraryService.cs" />
|
2016-12-02 05:14:52 +08:00
|
|
|
|
<Compile Include="Providers\IMediaFolderProvider.cs" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Compile Include="Services\MediaLibraryService.cs" />
|
|
|
|
|
<Compile Include="Services\Shapes.cs" />
|
|
|
|
|
<Compile Include="Services\XmlRpcHandler.cs" />
|
2018-01-19 04:36:13 +08:00
|
|
|
|
<Compile Include="Settings\MediaLibraryPickerFieldLocalizationEditorEvents.cs" />
|
|
|
|
|
<Compile Include="Settings\MediaLibraryPickerFieldLocalizationSettings.cs" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Compile Include="Settings\MediaLibraryPickerFieldEditorEvents.cs" />
|
|
|
|
|
<Compile Include="Settings\MediaLibraryPickerFieldSettings.cs" />
|
|
|
|
|
<Compile Include="Tokens\FieldTokens.cs" />
|
|
|
|
|
<Compile Include="ViewModels\MediaManagerChildFoldersViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\ImportMediaViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\MediaLibraryPickerFieldViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\MediaManagerMediaItemsViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\MediaManagerFolderCreateViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\MediaManagerFolderEditViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\MediaManagerImportViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\MediaManagerIndexViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\OEmbedViewModel.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Admin\Index.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media.Edit.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\ClientStorage\Index.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Admin\Import.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Folder\Create.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Folder\Edit.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media-Image.Thumbnail.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media.Thumbnail.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Admin\MediaItems.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media-Video.Thumbnail.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Media.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Placement.info">
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\EditorTemplates\Parts.Media.Edit.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Image.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Image.Metadata.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Media.Actions.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Video.Metadata.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Video.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media-Audio.Thumbnail.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media-Document.Thumbnail.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Audio.Metadata.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Audio.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Document.Metadata.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Document.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\DefinitionTemplates\MediaLibraryPickerFieldSettings.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\EditorTemplates\Fields\MediaLibraryPicker.Edit.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Fields\MediaLibraryPicker.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Fields\MediaLibraryPicker.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Audio.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Document.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Image.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Video.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Audio.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Document.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Image.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Video.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\OEmbed\Index.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\OEmbed.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\OEmbed.Metadata.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\OEmbed.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\OEmbed.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media-OEmbed.Thumbnail.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media.Raw.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\MediaLibrary.Actions.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\MediaLibrary.Navigation.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Fields\MediaLibraryPicker.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Admin\ChildFolders.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\MediaLibraryPicker.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\DefinitionTemplates\MediaFileNameEditorSettings.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Media.Edit.FileName.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\VectorImage.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\VectorImage.Metadata.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\VectorImage.Summary.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\VectorImage.SummaryAdmin.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Media-VectorImage.Thumbnail.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\EditorTemplates\Parts\MediaLibrary.MediaLibrarySettings.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<None Include="packages.config" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</ItemGroup>
|
2018-01-19 04:36:13 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Localization.ContentTranslations.SummaryAdmin-Image.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\Localization.ContentTranslations.SummaryAdmin-Audio.cshtml" />
|
|
|
|
|
<Content Include="Views\Parts\Localization.ContentTranslations.SummaryAdmin-Document.cshtml" />
|
|
|
|
|
<Content Include="Views\Parts\Localization.ContentTranslations.SummaryAdmin-OEmbed.cshtml" />
|
|
|
|
|
<Content Include="Views\Parts\Localization.ContentTranslations.SummaryAdmin-VectorImage.cshtml" />
|
|
|
|
|
<Content Include="Views\Parts\Localization.ContentTranslations.SummaryAdmin-Video.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Localization.ContentTranslations.SummaryAdmin.ForMedia.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\DefinitionTemplates\MediaLibraryPickerFieldLocalizationSettings.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Parts\MediaLibraryLocalization.Actions.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\LocalizedMedia\MediaItems.cshtml" />
|
|
|
|
|
</ItemGroup>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
|
|
|
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ApplicationManifest>Styles\orchard-medialibrary-admin.css</ApplicationManifest>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
|
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
|
|
|
<Target Name="BeforeBuild">
|
|
|
|
|
</Target> -->
|
|
|
|
|
<Target Name="AfterBuild" DependsOnTargets="AfterBuildCompiler">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AreasManifestDir>$(ProjectDir)\..\Manifests</AreasManifestDir>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<!-- If this is an area child project, uncomment the following line:
|
|
|
|
|
<CreateAreaManifest AreaName="$(AssemblyName)" AreaType="Child" AreaPath="$(ProjectDir)" ManifestPath="$(AreasManifestDir)" ContentFiles="@(Content)" />
|
|
|
|
|
-->
|
|
|
|
|
<!-- If this is an area parent project, uncomment the following lines:
|
|
|
|
|
<CreateAreaManifest AreaName="$(AssemblyName)" AreaType="Parent" AreaPath="$(ProjectDir)" ManifestPath="$(AreasManifestDir)" ContentFiles="@(Content)" />
|
|
|
|
|
<CopyAreaManifests ManifestPath="$(AreasManifestDir)" CrossCopy="false" RenameViews="true" />
|
|
|
|
|
-->
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="AfterBuildCompiler" Condition="'$(MvcBuildViews)'=='true'">
|
2017-06-30 03:10:51 +08:00
|
|
|
|
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Target>
|
|
|
|
|
<ProjectExtensions>
|
|
|
|
|
<VisualStudio>
|
|
|
|
|
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
|
|
|
|
<WebProjectProperties>
|
|
|
|
|
<UseIIS>False</UseIIS>
|
|
|
|
|
<AutoAssignPort>True</AutoAssignPort>
|
|
|
|
|
<DevelopmentServerPort>45979</DevelopmentServerPort>
|
|
|
|
|
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
|
|
|
|
<IISUrl>
|
|
|
|
|
</IISUrl>
|
|
|
|
|
<NTLMAuthentication>False</NTLMAuthentication>
|
|
|
|
|
<UseCustomServer>True</UseCustomServer>
|
2019-02-20 03:42:13 +08:00
|
|
|
|
<CustomServerUrl>https://github.com/OrchardCMS/Orchard</CustomServerUrl>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
|
|
|
|
|
</WebProjectProperties>
|
|
|
|
|
</FlavorProperties>
|
|
|
|
|
</VisualStudio>
|
|
|
|
|
</ProjectExtensions>
|
2024-12-06 16:49:45 +08:00
|
|
|
|
</Project>
|