-
Notifications
You must be signed in to change notification settings - Fork 770
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
Enable CS1591 errors for undocumented API #4230
Conversation
Arcade by default NoWarns CS1591 errors. While that default is questionable, our team added a condition to not suppress that compiler error. Use that to enable CS1591 errors. ... and document the HttpClientBuilderExtensions class that was missing a class summary.
Similar as dotnet/extensions#4230, enable the CS1591 compiler errors when a library generates a documentation file.
FYI: @RussKie |
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.
Thanks for taking care of this @ViktorHofer
FWIW I believe we have in extensions our own analyzers and rules that were checking for this, which leads me to question how come there seemed to be one violation we weren't catching. |
Just as an FYI, @carlossanlop will eventually send a PR to dotnet/extensions to add a transport package for the dotnet-api-docs team. More details in dotnet/runtime#996 (comment). That transport package will include both all reference assemblies and the compiler generated XML docs. |
* Enable CS1591 errors for undocumented API Similar as dotnet/extensions#4230, enable the CS1591 compiler errors when a library generates a documentation file. * Update System.Web.Services.Description.csproj feedback from #5222 * Fix "build -vs" and adding /// comments to Federation --------- Co-authored-by: Matt Connew <[email protected]>
Arcade by default NoWarns CS1591 errors. While that default is questionable, our team added a condition to not suppress that compiler error. Use that to enable CS1591 errors.
... and document the HttpClientBuilderExtensions class that was missing a class summary.
Microsoft Reviewers: Open in CodeFlow