2013-12-24 04:03:29 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project ToolsVersion="4.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>
|
|
|
|
<ProjectGuid>{$$TestsProjectGuid$$}</ProjectGuid>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
<RootNamespace>$$ProjectName$$</RootNamespace>
|
|
|
|
<AssemblyName>$$ProjectName$$</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>
|
2013-12-24 04:03:29 +08:00
|
|
|
<OldToolsVersion>4.0</OldToolsVersion>
|
|
|
|
</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>
|
2024-12-06 16:59:15 +08:00
|
|
|
<CodeAnalysisRuleSet>..\..\..\..\OrchardBasicCorrectness.ruleset</CodeAnalysisRuleSet>
|
2013-12-24 04:03:29 +08:00
|
|
|
<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>
|
2024-12-06 16:59:15 +08:00
|
|
|
<Reference Include="Autofac, Version=3.5.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
|
2016-01-08 00:11:00 +08:00
|
|
|
<HintPath>..\..\..\..\packages\Autofac.3.5.2\lib\net40\Autofac.dll</HintPath>
|
2013-12-24 04:03:29 +08:00
|
|
|
</Reference>
|
2021-02-19 17:31:26 +08:00
|
|
|
<Reference Include="Moq, Version=4.2.1510.2205, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
|
|
|
|
<HintPath>..\..\..\..\packages\Moq.4.2.1510.2205\lib\net40\Moq.dll</HintPath>
|
2013-12-24 04:03:29 +08:00
|
|
|
</Reference>
|
2024-12-08 20:58:44 +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>
|
|
|
|
</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>
|
2013-12-24 04:03:29 +08:00
|
|
|
</Reference>
|
2024-12-06 16:59:15 +08:00
|
|
|
<Reference Include="nunit.framework, Version=2.5.10.11092, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
2016-01-08 00:11:00 +08:00
|
|
|
<HintPath>..\..\..\..\packages\NUnit.2.5.10.11092\lib\nunit.framework.dll</HintPath>
|
2013-12-24 04:03:29 +08:00
|
|
|
</Reference>
|
|
|
|
<Reference Include="System" />
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
<Reference Include="System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL">
|
|
|
|
<SpecificVersion>False</SpecificVersion>
|
|
|
|
<HintPath>..\..\..\..\..\lib\sqlce\System.Data.SqlServerCe.dll</HintPath>
|
|
|
|
<Private>True</Private>
|
|
|
|
</Reference>
|
|
|
|
</ItemGroup>
|
|
|
|
$$FileIncludes$$<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\..\..\Orchard.Tests.Modules\Orchard.Tests.Modules.csproj">
|
|
|
|
<Project>{6CB3EB30-F725-45C0-9742-42599BA8E8D2}</Project>
|
|
|
|
<Name>Orchard.Tests.Modules</Name>
|
|
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="..\..\..\..\Orchard.Tests\Orchard.Framework.Tests.csproj">
|
|
|
|
<Project>{abc826d4-2fa1-4f2f-87de-e6095f653810}</Project>
|
|
|
|
<Name>Orchard.Framework.Tests</Name>
|
|
|
|
</ProjectReference>
|
|
|
|
$$OrchardReferences$$
|
|
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
2021-02-19 17:31:26 +08:00
|
|
|
</Project>
|