QFDev
QFDev

Reputation: 8988

Can Visual Studio warning messages be selectively purged?

Is there any way I can purge certain warning messages in Visual Studio 2010 (or 2012 for that matter). In some instances VS complains that a given CSS property is not known, even though such properties are applicable for certain browsers.

Upvotes: 1

Views: 57

Answers (1)

888
888

Reputation: 3396

As stated in msdn you can use

#pragma warning( disable : number_of_the_warning )

Here you can find a list of the compiler warnings that are off by default.

Upvotes: 1

Related Questions