Updating Orchard.Glimpse and Orchard.OpenId to support View Compilation (#7713)

This commit is contained in:
Benedek Farkas
2017-11-10 15:12:46 +01:00
parent 018f07e1ca
commit 3d37ded6b0
4 changed files with 20 additions and 20 deletions

View File

@@ -21,14 +21,12 @@
</namespaces>
</pages>
</system.web.webPages.razor>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.5.2" />
</system.Web>
-->
<!-- Registering Roslyn as a compiler for Razor IntelliSense. -->
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.8, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6"/>
</compilers>
</system.codedom>
<system.web>
<compilation targetFramework="4.5.2">
<assemblies>
@@ -40,6 +38,8 @@
<add assembly="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<add assembly="Orchard.Framework,Culture=neutral, PublicKeyToken=null" />
<add assembly="Orchard.Core,Culture=neutral, PublicKeyToken=null" />
<add assembly="Orchard.Roles,Culture=neutral, PublicKeyToken=null" />
<add assembly="Orchard.Users,Culture=neutral, PublicKeyToken=null" />
</assemblies>
</compilation>
</system.web>