12 references to Solution
Microsoft.CodeAnalysis.CSharp.Features (4)
CodeRefactorings\EnableNullable\EnableNullableCodeRefactoringProvider.FixAllProvider.cs (2)
31=> [RefactorAllScope.Solution]; 35Debug.Assert(fixAllContext.Scope == RefactorAllScope.Solution);
ConvertNamespace\ConvertNamespaceCodeRefactoringProvider.cs (1)
33=> [RefactorAllScope.Project, RefactorAllScope.Solution];
ConvertToExtension\ConvertToExtensionFixAllProvider.cs (1)
26[RefactorAllScope.Document, RefactorAllScope.Project, RefactorAllScope.Solution, RefactorAllScope.ContainingType])
Microsoft.CodeAnalysis.Features (2)
AddFileBanner\AbstractAddFileBannerCodeRefactoringProvider.cs (1)
31= [RefactorAllScope.Project, RefactorAllScope.Solution];
OrganizeImports\OrganizeImportsCodeRefactoringProvider.cs (1)
27protected override ImmutableArray<RefactorAllScope> SupportedRefactorAllScopes => [RefactorAllScope.Project, RefactorAllScope.Solution];
Microsoft.CodeAnalysis.Workspaces (6)
CodeRefactorings\FixAllOccurences\RefactorAllProvider.cs (1)
26= [RefactorAllScope.Document, RefactorAllScope.Project, RefactorAllScope.Solution];
CodeRefactorings\FixAllOccurences\RefactorAllScope.cs (2)
74RefactorAllScope.Solution => FixAllScope.Solution, 86FixAllScope.Solution => RefactorAllScope.Solution,
CodeRefactorings\FixAllOccurences\RefactorAllState.cs (1)
114case RefactorAllScope.Solution:
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (2)
18protected static readonly ImmutableArray<RefactorAllScope> DefaultRefactorAllScopes = [RefactorAllScope.Document, RefactorAllScope.Project, RefactorAllScope.Solution]; 19protected static readonly ImmutableArray<RefactorAllScope> AllRefactorAllScopes = [RefactorAllScope.Document, RefactorAllScope.Project, RefactorAllScope.Solution, RefactorAllScope.ContainingType, RefactorAllScope.ContainingMember];