13

All I want to do is include this:

@using MyProject.WebUI.Properties

Across all my views without having to type it in each View, is there a way to do that in the ViewStart or Web.Config? Thank you.

tereško
  • 57,247
  • 24
  • 95
  • 149
naspinski
  • 33,200
  • 34
  • 107
  • 157

1 Answers1

36

Add your namespace to the views web.config under the namespaces element:

<system.web.webPages.razor>
    <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    <pages pageBaseType="System.Web.Mvc.WebViewPage">
      <namespaces>
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Routing" />
        <add namespace="MyProject.WebUI.Properties" />
      </namespaces>
    </pages>
  </system.web.webPages.razor>

Note that you might have to close and reopen the view file that you want intellisense in for these changes to take affect.

amurra
  • 14,821
  • 4
  • 68
  • 86