how to turn off "missing xml comment" warnings ?

  • Thread starter Thread starter n_o_s_p_a__m
  • Start date Start date
You will have to either not compile the XML documentation, or add XML
documentation where it says there is missing documentation. It's an
all-or-nothing-proposition.

Hope this helps.
 
n_o_s_p_a__m said:
someone please advise

If you're using VS.NET 2003, open the properties window for the project,
then go into the "Configuration | Build" section and put 1591 in the
"Suppress Specific Warnings" textbox.

If you're not using VS.NET 2003, you can pass a "/nowarn 1591" to the csc
compiler.

Good luck.
 
Thanks guys

Ryan LaNeve said:
If you're using VS.NET 2003, open the properties window for the project,
then go into the "Configuration | Build" section and put 1591 in the
"Suppress Specific Warnings" textbox.

If you're not using VS.NET 2003, you can pass a "/nowarn 1591" to the csc
compiler.

Good luck.
 
Back
Top