XML comment warnings on DataSet code

C

Corey Wirun

Hi All,

Is there any way to get rid of the hundreds of CS1591 'Missing XML comment
for publicly visible type or member' warnings on XSD.exe-generated
strongly-typed DataSet code?

I've got XML documentation generation 'on' for my solution (for use with
NDoc).

Thanks!
Corey.
 
K

Kevin Yu [MSFT]

Hi Corey,

First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you are receiving a compiler warning
CS1591 which says 'Missing XML comment for publicly visible type or member'
for the typed DataSet Definition. If there is any misunderstanding, please
feel free to let me know.

You're receiving this warning because you have set the /doc option for the
C# compiler and the warning level has been set to 4. To disable it, please
try the following steps.

1. Select Project / XXX properties... to open the project's Property Pages
dialog box.
2. Click the Configuration Properties folder.
3. Click the Build property page.
4. Clear the XML Documentation File property or set the Warning level
property lower than 4.

HTH.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top