4 overrides of GetSupportedFixAllScopes
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Formatting\CodeCleanupTests.TestFixers.cs (1)
132public override IEnumerable<FixAllScope> GetSupportedFixAllScopes()
Microsoft.CodeAnalysis.Features (1)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.FixAllProvider.cs (1)
23public override IEnumerable<FixAllScope> GetSupportedFixAllScopes()
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
30public override IEnumerable<FixAllScope> GetSupportedFixAllScopes()
CodeFixes\FixAllOccurrences\DocumentBasedFixAllProvider.cs (1)
59public sealed override IEnumerable<FixAllScope> GetSupportedFixAllScopes()
4 references to GetSupportedFixAllScopes
dotnet-format (2)
Analyzers\AnalyzerFormatter.cs (1)
74.Where(codefix => codefix.GetFixAllProvider()?.GetSupportedFixAllScopes()?.Contains(FixAllScope.Solution) == true)
Analyzers\SolutionCodeFixApplier.cs (1)
24if (fixAllProvider?.GetSupportedFixAllScopes()?.Contains(FixAllScope.Solution) != true)
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixesAndRefactorings\FixAllProviderInfo.cs (2)
59var scopes = fixAllProvider.GetSupportedFixAllScopes().ToImmutableArrayOrEmpty(); 91var scopes = fixAllProvider.GetSupportedFixAllScopes().ToImmutableArrayOrEmpty();