up vote 1 down vote favorite
2
share [g+] share [fb]

Does anyone know how to use directives (ex. @ Import) with NHAML?

link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted

if you mean adding references and importing namespaces you do it in the app.config or web.config

<?xml version="1.0"?>

<configuration>

  <configSections>
    <section name="nhaml" type="NHaml.Configuration.NHamlConfigurationSection, NHaml"/>
  </configSections>

  <nhaml autoRecompile="true">
    <assemblies>
      <add assembly="NHaml.Samples.Mvc"/>
    </assemblies>
    <namespaces>
      <add namespace="NHaml.Web.Mvc"/>
      <add namespace="NHaml.Samples.Mvc.Controllers"/>
    </namespaces>
  </nhaml>

...

</configuration>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.