How to disable warning without xml comments in VS 2005

At some point in time, I turned on a parameter in Visual Studio 2005 that gives a warning when methods / classes do not have an xml comment associated with them. I would like to disable this, but I can't seem to find the settings again. Does anyone know where this is?

+4
source share
4 answers

Right-click on your project and go to Properties.

Select the Assembly tab on the left.

Under Supress Warnings, type ... 1591.1592.15.1573.1571.1570.1572.

Although I do not recommend it, because the whole point of generating documentation is to document it. If you do not like the warnings, you can deselect the warning in the VS error list panel.

+10
source

If you have a .NET project, the setting is on the Project Properties tab> Tab. At the bottom of the "Output" section is the "XML Documentation File" checkbox.

+1
source

The only way I know is to disable the creation of XML documentation. This can be done in the Project properties / Compile / Generate XML file.

0
source

You can turn off documentation generation for the entire project in the project properties (you need to do this for each build configuration), you can turn off warnings for the entire project in the project properties, or you can turn off warnings on individual blocks of code using the "# pragma warning" directive .

0
source

Source: https://habr.com/ru/post/1277503/


All Articles