ayi <t>5 options:<br/> <br/> Fill in the documentation comments (great, but time-consuming)<br/> <br/> Turn off the comment generation (in project properties)<br/> <br/> Disable the warning in project properties (in 'Project properties' go to Project properties -> Build > "Errors and warnings" (section), Suppress Warnings (textbox), add 1591 (comma separated list)). By default it will change Active Configuration, consider to change configuration to All.<br/> <br/> Use #pragma warning disable 1591 to disable the warning just for some bits of code (and #pragma warning restore 1591 afterwards)<br/> <br/> Ignore the warnings (bad idea - you'll miss new "real" warnings)</t>