93 lines
3.9 KiB
XML
93 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
For more information on how to configure your ASP.NET application, please visit
|
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
|
-->
|
|
<configuration>
|
|
|
|
<configSections>
|
|
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
|
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
|
</sectionGroup>
|
|
</configSections>
|
|
<appSettings>
|
|
<add key="owin:HandleAllRequests" value="true" />
|
|
<add key="webPages:Enabled" value="false" />
|
|
</appSettings>
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.5">
|
|
<buildProviders>
|
|
<add extension=".cshtml" type="Nancy.ViewEngines.Razor.BuildProviders.NancyCSharpRazorBuildProvider, Nancy.ViewEngines.Razor.BuildProviders" />
|
|
<add extension=".vbhtml" type="Nancy.ViewEngines.Razor.BuildProviders.NancyVisualBasicRazorBuildProvider, Nancy.ViewEngines.Razor.BuildProviders" />
|
|
</buildProviders>
|
|
</compilation>
|
|
<httpRuntime targetFramework="4.5" />
|
|
<httpModules>
|
|
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Extensibility.Web.RequestTracking.WebRequestTrackingModule, Microsoft.ApplicationInsights.Extensibility.Web" />
|
|
</httpModules>
|
|
</system.web>
|
|
<system.webServer>
|
|
<handlers>
|
|
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
|
|
<remove name="OPTIONSVerbHandler" />
|
|
<remove name="TRACEVerbHandler" />
|
|
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
|
</handlers>
|
|
<modules runAllManagedModulesForAllRequests="false">
|
|
<remove name="ApplicationInsightsWebTracking" />
|
|
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Extensibility.Web.RequestTracking.WebRequestTrackingModule, Microsoft.ApplicationInsights.Extensibility.Web" preCondition="managedHandler" />
|
|
</modules>
|
|
<validation validateIntegratedModeConfiguration="false" />
|
|
</system.webServer>
|
|
<location path="Images">
|
|
<system.webServer>
|
|
<handlers>
|
|
<remove name="Nancy" />
|
|
</handlers>
|
|
</system.webServer>
|
|
</location>
|
|
<location path="Scripts">
|
|
<system.webServer>
|
|
<handlers>
|
|
<remove name="Nancy" />
|
|
</handlers>
|
|
</system.webServer>
|
|
</location>
|
|
<location path="Content">
|
|
<system.webServer>
|
|
<handlers>
|
|
<remove name="Nancy" />
|
|
</handlers>
|
|
</system.webServer>
|
|
</location>
|
|
<location path="fonts">
|
|
<system.webServer>
|
|
<handlers>
|
|
<remove name="Nancy" />
|
|
</handlers>
|
|
</system.webServer>
|
|
</location>
|
|
<system.web.webPages.razor>
|
|
<pages pageBaseType="Nancy.ViewEngines.Razor.NancyRazorViewBase">
|
|
<namespaces>
|
|
<add namespace="Nancy.ViewEngines.Razor" />
|
|
</namespaces>
|
|
</pages>
|
|
</system.web.webPages.razor>
|
|
<runtime>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
|
</dependentAssembly>
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
|
</dependentAssembly>
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Web.Razor" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
|
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</runtime>
|
|
</configuration> |