Created
June 10, 2013 13:30
-
-
Save grumpydev/5748718 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <configSections> | |
| <section name="razor" type="Nancy.ViewEngines.Razor.RazorConfigurationSection, Nancy.ViewEngines.Razor" /> | |
| </configSections> | |
| <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> | |
| <assemblies> | |
| <add assembly="Foo, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> | |
| </assemblies> | |
| </compilation> | |
| <httpRuntime targetFramework="4.5" /> | |
| <httpHandlers> | |
| <add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |
| </httpHandlers> | |
| </system.web> | |
| <appSettings> | |
| <add key="webPages:Enabled" value="false" /> | |
| </appSettings> | |
| <razor disableAutoIncludeModelNamespace="false"> | |
| <assemblies> | |
| <add assembly="Foo" /> | |
| </assemblies> | |
| <namespaces> | |
| <add namespace="Foo" /> | |
| </namespaces> | |
| </razor> | |
| <system.webServer> | |
| <validation validateIntegratedModeConfiguration="false" /> | |
| <handlers> | |
| <add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |
| </handlers> | |
| </system.webServer> | |
| </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment