-
Notifications
You must be signed in to change notification settings - Fork 676
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
CS1591 warnings still appearing despite adding to <NoWarn> #2561
CS1591 warnings still appearing despite adding to <NoWarn> #2561
Comments
Could you provide a repro project that caused you trouble or try again with the latest version? |
@filipw In my case, this issue is causing by a project level |
I didn't have a ruleset configured when I encountered this problem but I do find that with the current versions of VS Code, the extension, and the dotnet SDK, the problem no longer occurs for me. |
thanks a lot for confirming. if you have any ruleset problems, please open a new issue - it's a separate, new feature. thanks. |
Note: If you have an .editorconfig file you'll have to edit it too and set the associated codes to 'none' - otherwise you'll still get warnings. |
Environment data
dotnet --info
output:VS Code version: 1.27.2
C# Extension version: 1.16.1
Steps to reproduce
Create new C# project.
Add the following to the csproj file:
Open the Problems pane, if not already open.
Build the project.
Note that "Missing XML comment" warnings appear in the Problems pane, despite CS1591 being ignored in the csproj file.
Build the project and read the build log.
Expected behavior
"Missing XML comment" warnings do not appear, either in the Problems pane or the build log for the project.
Actual behavior
The Problems pane lists "Missing XML comment for..." warnings, despite CS1591 being included in the NoWarn list. (Build log is as expected.)
The text was updated successfully, but these errors were encountered: