2009-11-18 23:05:26 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
Note: As an alternative to hand editing this file you can use the
|
|
|
|
web admin tool to configure settings for your application. Use
|
|
|
|
the Website->Asp.Net Configuration option in Visual Studio.
|
|
|
|
A full list of settings and comments can be found in
|
|
|
|
machine.config.comments usually located in
|
|
|
|
\Windows\Microsoft.Net\Framework\v2.x\Config
|
|
|
|
-->
|
|
|
|
<configuration>
|
2010-05-06 10:28:29 -07:00
|
|
|
<system.web>
|
|
|
|
<!--
|
2009-11-18 23:05:26 +00:00
|
|
|
Set compilation debug="true" to insert debugging
|
|
|
|
symbols into the compiled page. Because this
|
|
|
|
affects performance, set this value to true only
|
|
|
|
during development.
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<compilation debug="true" targetFramework="4.0">
|
|
|
|
<assemblies>
|
|
|
|
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
|
|
|
<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"/></assemblies>
|
|
|
|
</compilation>
|
|
|
|
<!--
|
2009-11-18 23:05:26 +00:00
|
|
|
The <customErrors> section enables configuration
|
|
|
|
of what to do if/when an unhandled error occurs
|
|
|
|
during the execution of a request. Specifically,
|
|
|
|
it enables developers to configure html error pages
|
|
|
|
to be displayed in place of a error stack trace.
|
|
|
|
|
|
|
|
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
|
|
|
|
<error statusCode="403" redirect="NoAccess.htm" />
|
|
|
|
<error statusCode="404" redirect="FileNotFound.htm" />
|
|
|
|
</customErrors>
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<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>
|
|
|
|
<httpHandlers>
|
|
|
|
<add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
|
|
|
</httpHandlers>
|
|
|
|
</system.web>
|
|
|
|
<system.web.extensions/>
|
|
|
|
<!--
|
2009-11-18 23:05:26 +00:00
|
|
|
The system.webServer section is required for running ASP.NET AJAX under Internet
|
|
|
|
Information Services 7.0. It is not necessary for previous version of IIS.
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<system.webServer>
|
|
|
|
<validation validateIntegratedModeConfiguration="false"/>
|
|
|
|
<modules runAllManagedModulesForAllRequests="true">
|
|
|
|
</modules>
|
|
|
|
<handlers>
|
|
|
|
<remove name="MvcHttpHandler"/>
|
|
|
|
<remove name="UrlRoutingHandler"/>
|
|
|
|
<add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
|
|
|
</handlers>
|
|
|
|
</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>
|