Suppress warning CS1591 for strongly typed datasets
In some projects of our solution (.NET 1.1) we have a lot of strongly typed DataSets with their generated .cs files. Because of the generated code we are faced with tons of warnings like warning CS1591: Missing XML comment for publicly visible type or member ‘x'] in our Build Output. Furthermore this is really annoying if you treat warnings as errors!
An easy way to suppress these warnings in your projects is to enter the warning-id in the property build page of your project.
An easy way to suppress these warnings in your projects is to enter the warning-id in the property build page of your project.
1 Comments:
At 10:27 PM, Programmist said…
Thankfully in .NET 2.0 it possible to suppress warning message for some specific part of code, in contrast to .NET 1.1 where you can suppress message only for a whole project.
Post a Comment
<< Home