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>{72457126-E118-4171-A08F-9A709EE4B7FC}</ProjectGuid>
|
|
|
|
|
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>Orchard.MultiTenancy</RootNamespace>
|
|
|
|
|
<AssemblyName>Orchard.MultiTenancy</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>
|
|
|
|
|
</UpgradeBackupLocation>
|
|
|
|
|
<TargetFrameworkProfile />
|
|
|
|
|
<UseIISExpress>false</UseIISExpress>
|
|
|
|
|
<IISExpressSSLPort />
|
|
|
|
|
<IISExpressAnonymousAuthentication />
|
|
|
|
|
<IISExpressWindowsAuthentication />
|
|
|
|
|
<IISExpressUseClassicPipelineMode />
|
|
|
|
|
<UseGlobalApplicationHostFile />
|
2018-08-10 03:22:42 +08:00
|
|
|
|
<Use64BitIISExpress />
|
|
|
|
|
<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>
|
2022-01-21 15:47:00 +08:00
|
|
|
|
<Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Antlr3.Runtime.3.5.1\lib\net40-client\Antlr3.Runtime.dll</HintPath>
|
|
|
|
|
</Reference>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Reference Include="Autofac, Version=3.5.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Autofac.3.5.2\lib\net40\Autofac.dll</HintPath>
|
|
|
|
|
</Reference>
|
2022-01-21 15:47:00 +08:00
|
|
|
|
<Reference Include="Iesi.Collections, Version=4.0.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Iesi.Collections.4.0.4\lib\net461\Iesi.Collections.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
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>
|
2022-01-21 15:47:00 +08:00
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<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>
|
2024-12-06 16:49:25 +08:00
|
|
|
|
<Reference Include="NHibernate, Version=5.5.0.0, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\NHibernate.5.5.2\lib\net48\NHibernate.dll</HintPath>
|
2022-01-21 15:47:00 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Remotion.Linq, Version=2.2.0.0, Culture=neutral, PublicKeyToken=fee00910d6e5f53b, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Remotion.Linq.2.2.0\lib\net45\Remotion.Linq.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Remotion.Linq.EagerFetching, Version=2.2.0.0, Culture=neutral, PublicKeyToken=fee00910d6e5f53b, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\..\..\packages\Remotion.Linq.EagerFetching.2.2.0\lib\net45\Remotion.Linq.EagerFetching.dll</HintPath>
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.ComponentModel.DataAnnotations">
|
|
|
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
|
|
|
</Reference>
|
2022-01-21 15:47:00 +08:00
|
|
|
|
<Reference Include="System.Configuration" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
2022-01-21 15:47:00 +08:00
|
|
|
|
<Reference Include="System.ServiceModel" />
|
|
|
|
|
<Reference Include="System.Transactions" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
<Reference Include="System.Web" />
|
|
|
|
|
<Reference Include="System.Web.ApplicationServices" />
|
|
|
|
|
<Reference Include="System.Web.DynamicData" />
|
|
|
|
|
<Reference Include="System.Web.Entity" />
|
|
|
|
|
<Reference Include="System.Web.Extensions" />
|
|
|
|
|
<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.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.Linq" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="AdminMenu.cs" />
|
|
|
|
|
<Compile Include="Annotations\SqlDatabaseConnectionStringAttribute.cs" />
|
|
|
|
|
<Compile Include="ResourceManifest.cs" />
|
|
|
|
|
<Compile Include="Commands\TenantCommand.cs" />
|
|
|
|
|
<Compile Include="Controllers\AdminController.cs" />
|
|
|
|
|
<Compile Include="Extensions\UrlHelperExtensions.cs" />
|
|
|
|
|
<Compile Include="Routes.cs" />
|
|
|
|
|
<Compile Include="Services\ITenantResetEventHandler.cs" />
|
|
|
|
|
<Compile Include="Services\ITenantService.cs" />
|
|
|
|
|
<Compile Include="Services\TenantService.cs" />
|
|
|
|
|
<Compile Include="ViewModels\ModuleEntry.cs" />
|
|
|
|
|
<Compile Include="ViewModels\TenantResetViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\TenantEditViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\TenantAddViewModel.cs" />
|
|
|
|
|
<Compile Include="ViewModels\TenantsIndexViewModel.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="ViewModels\ThemeEntry.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Content\Admin\images\disabled.gif" />
|
|
|
|
|
<Content Include="Content\Admin\images\enabled.gif" />
|
|
|
|
|
<Content Include="Module.txt" />
|
|
|
|
|
<Content Include="Scripts\multi-tenancy.admin.js" />
|
|
|
|
|
<Content Include="Styles\orchard-multitenancy-admin.css" />
|
|
|
|
|
<Content Include="Views\Admin\Add.cshtml" />
|
|
|
|
|
<Content Include="Views\Admin\Edit.cshtml" />
|
|
|
|
|
<Content Include="Views\Admin\DisplayTemplates\ActionsForUninitialized.cshtml" />
|
|
|
|
|
<Content Include="Views\Admin\DisplayTemplates\ActionsForDisabled.cshtml" />
|
|
|
|
|
<Content Include="Views\Admin\DisplayTemplates\ActionsForInvalid.cshtml" />
|
|
|
|
|
<Content Include="Views\Admin\DisplayTemplates\ActionsForRunning.cshtml" />
|
|
|
|
|
<Content Include="Views\Admin\Index.cshtml" />
|
|
|
|
|
</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>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Content\Web.config">
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Styles\Web.config">
|
|
|
|
|
<SubType>
|
|
|
|
|
</SubType>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Web.config" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Scripts\Web.config">
|
|
|
|
|
<SubType>
|
|
|
|
|
</SubType>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Views\Admin\Reset.cshtml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-02-19 17:31:26 +08:00
|
|
|
|
<None Include="packages.config" />
|
2015-12-15 19:55:23 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
|
|
|
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
|
|
|
|
</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" Condition="'$(MvcBuildViews)'=='true'">
|
|
|
|
|
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
<ProjectExtensions>
|
|
|
|
|
<VisualStudio>
|
|
|
|
|
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
|
|
|
|
<WebProjectProperties>
|
|
|
|
|
<UseIIS>False</UseIIS>
|
|
|
|
|
<AutoAssignPort>True</AutoAssignPort>
|
|
|
|
|
<DevelopmentServerPort>3803</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>
|
2022-01-14 16:11:12 +08:00
|
|
|
|
</Project>
|