-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Remove legacy incremental-analyzer implementation of TaskList. part2 #72406
Remove legacy incremental-analyzer implementation of TaskList. part2 #72406
Conversation
34f671d
to
127efc2
Compare
@@ -8,21 +8,22 @@ namespace Microsoft.CodeAnalysis.Diagnostics; | |||
|
|||
internal static class InternalDiagnosticsOptionsStorage | |||
{ | |||
private static readonly EditorConfigValueSerializer<DiagnosticMode> s_editorConfigValueSerializer = EditorConfigValueSerializer.CreateSerializerForEnum<DiagnosticMode>(); |
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.
the crux of this change is that we don't actually support any serializing of the options to control the underlyign diagnosticmode. it's always going to be 'pull' for razor/liveshare. And it's always going to be 'default' for normal diagnostics. 'default' means we then go look at the control tower feature flag (inside vs), which allows us to flip the option back to solution-crawler if we have to pull the emergency brake.
Going to move forward on this. @dibarbet for awareness once you've returned. Thanks. |
Followup to #72315. This removes legacy options that are no longer supported as a public way for users to control this behavior.
Note: we still have the internal support for this to be controlled by control tower if we run into any issues.