Implemented interface member:
property
Project
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllState.Project
1 write to Project
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
38Project = project;
7 references to Project
Microsoft.CodeAnalysis.Workspaces (7)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
35public Project Project => State.Project;
CodeFixesAndRefactorings\CommonFixAllState.cs (3)
22public Solution Solution => Project.Solution; 51var (newDocument, newProject) = documentAndProject.HasValue ? documentAndProject.Value : (Document, Project); 56newProject == Project &&
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
61public Project Project => State.Project;
CodeRefactorings\FixAllOccurences\FixAllState.cs (2)
112documentsToFix = Project.Documents; 116documentsToFix = Project.Solution.Projects.SelectMany(p => p.Documents);