Created
October 22, 2010 12:41
-
-
Save carlhoerberg/640479 to your computer and use it in GitHub Desktop.
Web.config lines to enable dynamic in NHaml views
This file contains 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
<configSections> | |
<section name="nhaml" type="NHaml.Configuration.NHamlConfigurationSection, NHaml"/> | |
</configSections> | |
<nhaml templateCompiler="CSharp4" useTabs="true"> | |
<assemblies> | |
<add assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> | |
<add assembly="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> | |
</assemblies> | |
</nhaml> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment