Implemented interface member:
property
Project
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllState.Project
1 write to Project
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
40
Project
= project;
9 references to Project
Microsoft.CodeAnalysis.Features (2)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
253
=> FixAllHelper.GetDefaultFixAllTitle(fixAllState.Scope, title: fixAllState.DiagnosticIds.First(), fixAllState.Document!, fixAllState.
Project
);
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.RemoveSuppressionCodeAction.BatchFixer.cs (1)
116
var oldSolution = fixAllState.
Project
.Solution;
Microsoft.CodeAnalysis.Workspaces (7)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
36
public Project Project => State.
Project
;
CodeFixesAndRefactorings\CommonFixAllState.cs (3)
22
public Solution Solution =>
Project
.Solution;
54
var (newDocument, newProject) = documentAndProject.HasValue ? documentAndProject.Value : (Document,
Project
);
59
newProject ==
Project
&&
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
61
public Project Project => State.
Project
;
CodeRefactorings\FixAllOccurences\FixAllState.cs (2)
117
documentsToFix =
Project
.Documents;
121
documentsToFix =
Project
.Solution.Projects.SelectMany(p => p.Documents);