vote up 0 vote down star

In my app I have a fair number of entities which have fields which are getting their values set via refletion. (In this case NHibernate is setting them). I'd like to get rid of the "x is never assigned to and will always have its default value 0" warnings, so I can more easily pick out the other warnings. I realize you can surround them in pragma directives, but AFAIK you have to do this for each one. Is there a project wide or solution wide way I could do this?

flag

40% accept rate
Any reason you wouldn't just put #pragma warning disable 169 at the top of the source code file? It suppresses for the remainder of the file. – nobugz Feb 8 at 22:02
++ to that, much better since it makes it clear that this file contains loads of these and not absolutely everything – ShuggyCoUk Feb 9 at 13:54
In my case I'm using NHibernate to set the IDs of entities. So on every domain object I have private int _ID; I really don't want to have to set put pragma directives on each of the entites, but would rather something global. – NG Feb 10 at 1:56

2 Answers

vote up 5 vote down check

Use the C# commandline option /nowarn http://msdn.microsoft.com/en-us/library/7f28x9z3(VS.80).aspx

To do this within visual studio goto Project properties->Build->(Errors and warnings) Suppress Warnings and then specify a comma separated list of warnings which need to be suppressed.

link|flag
vote up 3 vote down

Open the project properties, on the build tab, enter warning IDs you want to surpress in the Suppress warnings: box.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.