-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GenerateDocumentationFile to make summaries show up in IDEs #365
Conversation
Without `GenerateDocumentationFile` set to true, your great code summaries never make it to the developer using the nuget.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @NielsPilgaard,
Thanks for raising this PR. Could you have a look at these build warnings/errors?
error CS1570: XML comment has badly formed XML -- 'Expected an end tag for element 'summary'.'
Absolutely, I'll have a look tonight 👍 |
1591 warns about public types missing documentation: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-messages/cs1591
I hope this is an acceptable approach, it was either ignoring warning |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I hope this is an acceptable approach, it was either ignoring warning
CS1591
or adding summaries in over 1700 places 😅
Yeah, that makes sense.
Thank you!
Without
GenerateDocumentationFile
set to true, your great code summaries never make it to the developer using the nuget.