Where to place NeutralResourcesLanguageAttribute for an ASP.NET MVC app?

668 Views Asked by At

Simple question:

Where should I place [assembly: NeutralResourcesLanguageAttribute("en-US" , UltimateResourceFallbackLocation.Satellite)] for an ASP.NET MVC application?

On the HttpApplication class in Global.asax.cs?

1

There are 1 best solutions below

0
On BEST ANSWER

It goes in AssemblyInfo.cs

Seems obvious in hindsight. Thanks.