mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<configuration>
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.0">
|
|
<assemblies>
|
|
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
|
</assemblies>
|
|
</compilation>
|
|
|
|
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
|
|
<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.Linq"/>
|
|
<add namespace="System.Collections.Generic"/>
|
|
<add namespace="Orchard.Mvc.Html"/>
|
|
</namespaces>
|
|
</pages>
|
|
</system.web>
|
|
<system.web.extensions/>
|
|
<runtime>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
|
<bindingRedirect oldVersion="2.0.0.0" newVersion="3.0.0.0" />
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</runtime>
|
|
</configuration>
|