In my razor view I name a include namespace like this: @using Resources = Project.Resources. I want to include this namespace in every view. So I went to the Web.config of my views folder and added this:
<configuration>
<system.web.webPages.razor>
<namespaces>
<add namespace="Project.Resources" />
</namespace>
</system.web.webPages.razor>
</configuration>
Is there a way to add a name to this namespace? So I can type @Resource.Label in my views?