mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
59 lines
1.9 KiB
XML
59 lines
1.9 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
For more information on how to configure your ASP.NET application, please visit
|
|
http://go.microsoft.com/fwlink/?LinkId=152368
|
|
-->
|
|
|
|
<configuration>
|
|
<appSettings>
|
|
<add key="Title" value="Orchard Modules Gallery"/>
|
|
</appSettings>
|
|
|
|
<system.web>
|
|
|
|
<compilation debug="true" targetFramework="4.0">
|
|
<assemblies>
|
|
<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.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
|
</assemblies>
|
|
</compilation>
|
|
|
|
<authentication mode="Forms">
|
|
<forms loginUrl="~/Account/LogOn" timeout="2880">
|
|
<credentials passwordFormat="SHA1">
|
|
<user name="UserName1" password="SHA1EncryptedPassword1"/>
|
|
<user name="UserName2" password="SHA1EncryptedPassword2"/>
|
|
<user name="UserName3" password="SHA1EncryptedPassword3"/>
|
|
</credentials>
|
|
</forms>
|
|
</authentication>
|
|
|
|
<pages>
|
|
<namespaces>
|
|
<add namespace="System.Web.Mvc" />
|
|
<add namespace="System.Web.Mvc.Ajax" />
|
|
<add namespace="System.Web.Mvc.Html" />
|
|
<add namespace="System.Web.Routing" />
|
|
</namespaces>
|
|
</pages>
|
|
</system.web>
|
|
|
|
<system.webServer>
|
|
<validation validateIntegratedModeConfiguration="false"/>
|
|
<modules runAllManagedModulesForAllRequests="true"/>
|
|
</system.webServer>
|
|
|
|
<runtime>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
|
<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</runtime>
|
|
|
|
</configuration>
|
|
|