Search code examples
asp.net-mvclocalizationsatellite-assembly

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


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?


Solution

  • It goes in AssemblyInfo.cs

    Seems obvious in hindsight. Thanks.