7 references to DiagnosticOptionsStorage
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer_IncrementalAnalyzer.cs (1)
91
var logTelemetry = GlobalOptions.GetOption(
DiagnosticOptionsStorage
.LogTelemetryForBackgroundAnalyzerExecution);
Features\Options\DiagnosticModeExtensions.cs (1)
19
? globalOptions.GetOption(
DiagnosticOptionsStorage
.LspPullDiagnosticsFeatureFlag) ? DiagnosticMode.LspPull : DiagnosticMode.SolutionCrawlerPush
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
Diagnostics\PullDiagnosticTests.cs (2)
217
testLspServer.TestWorkspace.GlobalOptions.SetGlobalOption(
DiagnosticOptionsStorage
.LspPullDiagnosticsFeatureFlag, false);
235
testLspServer.TestWorkspace.GlobalOptions.SetGlobalOption(
DiagnosticOptionsStorage
.LspPullDiagnosticsFeatureFlag, true);
Microsoft.VisualStudio.LanguageServices (2)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
225
var logDelta = _globalOptions.GetOption(
DiagnosticOptionsStorage
.LogTelemetryForBackgroundAnalyzerExecution);
Telemetry\VisualStudioWorkspaceTelemetryService.cs (1)
60
var logDelta = _globalOptions.GetOption(
DiagnosticOptionsStorage
.LogTelemetryForBackgroundAnalyzerExecution);
Microsoft.VisualStudio.LanguageServices.CSharp (1)
Options\AdvancedOptionPageControl.xaml.cs (1)
250
this.OptionStore.SetOption(
DiagnosticOptionsStorage
.LspPullDiagnosticsFeatureFlag, checkboxValue.Value);