I have a large website solution in visual studio comprised of an ASP.NET Website project, and many class library projects. I'm looking for a way to either:
- Disable ReSharper localization completely, or;
- Force "English" as the default, and only language
The solution is an internal application to our organization, with zero chance of ever being localized. At the same time I use StyleCop
and ReSharper
for code style management, and am sick of being littered with "String can/should be localized" warnings, etc. I can turn some of the warnings off in the StyleCop and Resharper settings, however I'd rather just specify English as the only language, etc.
I thought there was a way in the AssemblyInfo.cs
file for each class library project to specify English only, etc. but can't seem to find out how online so perhaps I'm off base there.
Any help would be appreciated.