2016-02-22 08:48:31 +08:00
|
|
|
<?xml version="1.0"?>
|
2015-12-14 05:21:02 +08:00
|
|
|
<configuration>
|
2016-02-22 08:48:31 +08:00
|
|
|
<configSections>
|
|
|
|
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
|
|
|
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
|
|
|
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
|
|
|
</sectionGroup>
|
|
|
|
</configSections>
|
|
|
|
<system.web.webPages.razor>
|
2021-02-05 02:05:50 +08:00
|
|
|
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.7, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
2016-02-22 08:48:31 +08:00
|
|
|
<pages pageBaseType="Orchard.Mvc.ViewEngines.Razor.WebViewPage">
|
|
|
|
<namespaces>
|
|
|
|
<add namespace="System.Web.Mvc"/>
|
|
|
|
<add namespace="System.Web.Mvc.Ajax"/>
|
|
|
|
<add namespace="System.Web.Mvc.Html"/>
|
|
|
|
<add namespace="System.Web.Routing"/>
|
|
|
|
<add namespace="System.Web.WebPages"/>
|
|
|
|
<add namespace="System.Linq"/>
|
|
|
|
<add namespace="System.Collections.Generic"/>
|
|
|
|
<add namespace="Orchard.Mvc.Html"/>
|
|
|
|
</namespaces>
|
|
|
|
</pages>
|
|
|
|
</system.web.webPages.razor>
|
2018-09-19 19:45:23 +08:00
|
|
|
<appSettings>
|
|
|
|
<add key="aspnet:RoslynCompilerLocation" value="..\..\bin\roslyn" />
|
|
|
|
</appSettings>
|
2017-11-10 04:04:12 +08:00
|
|
|
<system.codedom>
|
|
|
|
<compilers>
|
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
|
|
|
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" compilerOptions="/langversion:7.3 /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
|
2017-11-10 04:04:12 +08:00
|
|
|
</compilers>
|
|
|
|
</system.codedom>
|
2016-02-22 08:48:31 +08:00
|
|
|
<system.web>
|
2021-02-05 02:05:50 +08:00
|
|
|
<compilation targetFramework="4.8">
|
2016-02-22 08:48:31 +08:00
|
|
|
<assemblies>
|
|
|
|
<add assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
|
|
|
|
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
|
|
|
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
|
|
|
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
|
2021-02-05 02:05:50 +08:00
|
|
|
<add assembly="System.Web.Mvc, Version=5.2.7, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
2016-02-22 08:48:31 +08:00
|
|
|
<add assembly="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
2019-05-21 23:05:33 +08:00
|
|
|
<add assembly="Orchard.Framework"/>
|
|
|
|
<add assembly="Orchard.Core"/>
|
2016-02-22 08:48:31 +08:00
|
|
|
</assemblies>
|
|
|
|
</compilation>
|
|
|
|
</system.web>
|
|
|
|
<runtime>
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30AD4FE6B2A6AEED" culture="neutral"/>
|
2024-12-06 16:49:45 +08:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
|
2016-02-22 08:48:31 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="NHibernate" publicKeyToken="AA95F207798DFDB4" culture="neutral"/>
|
2021-07-30 14:41:53 +08:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.1.0.4000" newVersion="4.1.0.4000"/>
|
2016-02-22 08:48:31 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="Iesi.Collections" publicKeyToken="AA95F207798DFDB4" culture="neutral"/>
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
|
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="Autofac" publicKeyToken="17863AF14B0044DA" culture="neutral"/>
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0"/>
|
|
|
|
</dependentAssembly>
|
|
|
|
</assemblyBinding>
|
|
|
|
</runtime>
|
|
|
|
</configuration>
|