VS and doc generation

  • Thread starter Thread starter styko
  • Start date Start date
S

styko

Is it possible to make VS2003.NET not to generate documentation for a given
public class???



Thanks for any help in advance!!!
 
Hi


In VS.NET2003
Click Tools -> Build Comment WebPages menuitem

HTH
Ravikanth[MVP]
 
This is not exactly what I wanted. I know how to generate html documentation
from xml doc file. What I need is some way to instruct VS !!!NOT!!! to
generate xml documentation (for specific class /classes in my project) while
compiling my project.



thanks.
 
Brad Quinn said:
I'll second that question!

It's a pain to have to ignore all of the "warning CS1591:
Missing XML comment for publicly visible type or
member '...'" warnings.

This is especially true if you have a bunch of auto-
generated classes (e.g. xsd generated DataSets) that you
have no intention of adding XML docs to.

Not the finest way, but you can suppress them globally under
"project properties->Config Properties->build->Suppress specific..." by
entering "1591" (without "CS")
 
Back
Top