Justin
Justin

Reputation: 10897

Can I configure the compiler in Visual Studio to give warnings / errors for all non-localized strings?

I would like the compiler to detect all non-localized strings in my solution. This means any string in an .aspx or .cs file that doesn't come from a resource file.

Upvotes: 0

Views: 135

Answers (1)

SLaks
SLaks

Reputation: 887245

Visual Studio 2010's Code Analysis can do this. (Although not for ASPX files)

Upvotes: 1

Related Questions