2009-04-28 6 views

Répondre

1

si vous voulez dire l'ajout de références et l'importation namespaces vous le faites dans le app.config ou 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> 
Questions connexes