2 instantiations of EnabledDiagnosticOptions
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\CodeCleanup\AbstractCodeCleanupService.cs (1)
268=> new(FormatDocument: true, RunThirdPartyFixers: true, Diagnostics: GetDiagnosticSets(), OrganizeUsings: new OrganizeUsingsSet(isRemoveUnusedImportEnabled: true, isSortImportsEnabled: true));
Microsoft.VisualStudio.LanguageServices (1)
CodeCleanup\AbstractCodeCleanUpFixer.cs (1)
354enabledDiagnostics = new EnabledDiagnosticOptions(
8 references to EnabledDiagnosticOptions
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
Formatting\CodeCleanupTests.cs (3)
756var enabledDiagnostics = codeCleanupService.GetAllDiagnostics(); 773var enabledDiagnostics = codeCleanupService.GetAllDiagnostics(); 840var enabledDiagnostics = codeCleanupService.GetAllDiagnostics();
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Features\CodeCleanup\AbstractCodeCleanupService.cs (2)
41EnabledDiagnosticOptions enabledDiagnostics, 267public EnabledDiagnosticOptions GetAllDiagnostics()
Features\CodeCleanup\ICodeCleanupService.cs (2)
16Task<Document> CleanupAsync(Document document, EnabledDiagnosticOptions enabledDiagnostics, IProgressTracker progressTracker, CodeActionOptionsProvider fallbackOptions, CancellationToken cancellationToken); 17EnabledDiagnosticOptions GetAllDiagnostics();
Microsoft.VisualStudio.LanguageServices (1)
CodeCleanup\AbstractCodeCleanUpFixer.cs (1)
333var enabledDiagnostics = codeCleanupService.GetAllDiagnostics();