Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off warning for no xml comment in VS 2005

At some point in time I turned on a setting in Visual Studio 2005 that produces a warning when methods/classes don't have an xml comment associated with them. I would like to turn this off, but can't seem to find the setting again. Anyone know where this is?

like image 744
Ted Elliott Avatar asked Dec 22 '22 14:12

Ted Elliott


1 Answers

Right-click your project and goto Properties.

Select the Build tab on the left.

Under Supress Warnings enter... 1591,1592,1573,1571,1570,1572.

Though I don't recommend this because the whole point of generating documentation is to have it documented. If you don't like the warnings you can de-select the warning option in the errors list pane of VS.

like image 73
Chad Moran Avatar answered Jan 12 '23 01:01

Chad Moran