-
Notifications
You must be signed in to change notification settings - Fork 733
Enable full solution background analysis #5868
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
Changes from 8 commits
1269a9b
f2a826d
fd3bb4f
25650eb
c18825b
52260d7
a9da5de
d36fcd0
6804b88
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1285,6 +1285,38 @@ | |
| "description": "Show regular expressions in completion list.", | ||
| "order": 20 | ||
| }, | ||
| "dotnet.backgroundAnalysis.analyzerDiagnosticsScope": { | ||
| "type": "string", | ||
| "enum": [ | ||
| "openFiles", | ||
| "fullSolution", | ||
| "none" | ||
| ], | ||
| "default": "openFiles", | ||
| "enumDescriptions": [ | ||
| "Open documents", | ||
| "Entire solution", | ||
| "None" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. would have loved the descriptions and the enum member names to match :)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These match the enum field names and user facing descriptions in VS. I think it would be reasonable to change the enum field names in Roslyn, and once the new values flow into this repo, we can rename the field names here as well. However, these are just internal implementation details, so not sure if it critical to make these changes. |
||
| ], | ||
| "description": "Run background code analysis for:", | ||
| "order": 30 | ||
| }, | ||
| "dotnet.backgroundAnalysis.compilerDiagnosticsScope": { | ||
| "type": "string", | ||
| "enum": [ | ||
| "openFiles", | ||
| "fullSolution", | ||
| "none" | ||
| ], | ||
| "default": "openFiles", | ||
| "enumDescriptions": [ | ||
| "Open documents", | ||
| "Entire solution", | ||
| "None" | ||
| ], | ||
| "description": "Show compiler errors and warnings for:", | ||
| "order": 30 | ||
| }, | ||
| "dotnet.highlighting.highlightRelatedRegexComponents": { | ||
| "type": "boolean", | ||
| "default": "true", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.