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