1 implementation of Project
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
20
public Project
Project
{ get; }
10 references to Project
Microsoft.CodeAnalysis.Features (5)
CodeFixesAndRefactorings\AbstractFixAllCodeAction.cs (2)
57
var service = FixAllState.
Project
.Solution.Services.GetRequiredService<IFixAllGetFixesService>();
71
var service = FixAllState.
Project
.Solution.Services.GetRequiredService<IFixAllGetFixesService>();
CodeFixesAndRefactorings\AbstractFixAllGetFixesService.cs (3)
60
var workspace = fixAllState.
Project
.Solution.Workspace;
84
fixAllState.
Project
.Solution,
89
fixAllState.
Project
.Language,
Microsoft.CodeAnalysis.Workspaces (5)
CodeFixesAndRefactorings\DefaultFixAllProviderHelpers.cs (2)
60
=> fixAllContextsAsync(fixAllContext, [(TFixAllContext)fixAllContext.With((document: null, fixAllContext.State.
Project
))]);
84
.Where(p => p.Language == fixAllContext.State.
Project
.Language);
CodeFixesAndRefactorings\FixAllLogger.cs (3)
69
m[LanguageName] = fixAllState.
Project
.Language;
75
m[LanguageName] = fixAllState.
Project
.Language.GetHashCode().ToString();
82
m[DocumentCount] = fixAllState.
Project
.DocumentIds.Count;