vote up 2 vote down star

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?

flag

60% accept rate

4 Answers

vote up 3 vote down check

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.

link|flag
@Chad Moran: +1, or add those to a list to promote to errors ;D – sixlettervariables Oct 6 '08 at 15:58
Sorry, -1. To me XML Comments are to hard to maintain to be used in normal code (public symbols that are just used by myself will never get in a chm, or, if they will, they will never be read there). For most situation (I mean everything but API development), XML Comments should be avoided. – Sylvain Jun 21 at 19:52
1  
That doesn't mean this wasn't a correct answer. – Chad Moran Jun 21 at 23:18
Sorry, you are right... +1 then :) – Sylvain Jun 22 at 19:32
vote up 0 vote down

You can either turn off the documentation generation for the whole project in the project properties (you'll need to do that for each build configuration), you can disable the warnings on the whole project in the project properties, or you can disable the warning on individual code blocks using the "#pragma warning" directive.

link|flag
vote up 0 vote down

If you have a .NET project, the setting is on Project properties > Build tab. Near the bottom, in the Output section, there is a check box labeled "XML documentation file".

link|flag
vote up 0 vote down

The only way I know is turning off XML documentation generation. This can be done on under Project properties / Compile / Generate XML documentation file.

link|flag
You can supress the warnings. – Chad Moran Oct 6 '08 at 15:56

Your Answer

Get an OpenID
or

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