I use the localization paradigm of one resx file per view in all my projects. I have two identical folder structures for Resources and Views and I link the resource and the view like so:
@using Res = [Namespace].Resources.[Controller].[View]
<p>@Res.[ResourceKey]</p>
Is it possible to get asp.net to use/link the resource file without the using statements and defining a Custom Tool Namespace
for all my Resx files? (Yes, I am that lazy.)