I have separate Resources assembly and i want every razor view to have access to it.
Now i put @using Res = MyProject.Web.Resources;
in every view that needs it (later all pages will) and access the resources by
@Res.TheNeededResource.TheField
I tried to add the resouce namespace to web.config in view folder with no success
<add namespace="MyProject.Web.Resources" />
if i add full path namespace in view IDE highlights the namespace i've added in config as redundant - when i remove it - error
How to add that namespace correctly? or some other way?