11 references to Project
Microsoft.CodeAnalysis.CSharp.Features (2)
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 (7)
CodeRefactorings\FixAllOccurences\DocumentBasedRefactorAllProvider.cs (1)
86Contract.ThrowIfFalse(refactorAllContext.Scope is RefactorAllScope.Document or RefactorAllScope.Project
CodeRefactorings\FixAllOccurences\RefactorAllProvider.cs (1)
26= [RefactorAllScope.Document, RefactorAllScope.Project, RefactorAllScope.Solution];
CodeRefactorings\FixAllOccurences\RefactorAllScope.cs (2)
73RefactorAllScope.Project => FixAllScope.Project, 85FixAllScope.Project => RefactorAllScope.Project,
CodeRefactorings\FixAllOccurences\RefactorAllState.cs (1)
110case RefactorAllScope.Project:
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];