12 references to Solution
Microsoft.CodeAnalysis.CSharp.Features (4)
CodeRefactorings\EnableNullable\EnableNullableCodeRefactoringProvider.FixAllProvider.cs (2)
31
=> [RefactorAllScope.
Solution
];
35
Debug.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)
27
protected 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)
74
RefactorAllScope.
Solution
=> FixAllScope.Solution,
86
FixAllScope.Solution => RefactorAllScope.
Solution
,
CodeRefactorings\FixAllOccurences\RefactorAllState.cs (1)
114
case RefactorAllScope.
Solution
:
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (2)
18
protected static readonly ImmutableArray<RefactorAllScope> DefaultRefactorAllScopes = [RefactorAllScope.Document, RefactorAllScope.Project, RefactorAllScope.
Solution
];
19
protected static readonly ImmutableArray<RefactorAllScope> AllRefactorAllScopes = [RefactorAllScope.Document, RefactorAllScope.Project, RefactorAllScope.
Solution
, RefactorAllScope.ContainingType, RefactorAllScope.ContainingMember];