1 implementation of Solution
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
21
public Solution
Solution
=> Project.Solution;
8 references to Solution
Microsoft.CodeAnalysis.Features (4)
CodeFixesAndRefactorings\AbstractFixAllGetFixesService.cs (4)
30
return fixAllContext.State.
Solution
;
34
return await codeAction.GetChangedSolutionInternalAsync(fixAllContext.State.
Solution
, fixAllContext.Progress, fixAllContext.CancellationToken).ConfigureAwait(false);
64
fixAllState.
Solution
, progressTracker, cancellationToken).ConfigureAwait(false);
72
fixAllState.
Solution
, progressTracker, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (4)
CodeFixesAndRefactorings\DefaultFixAllProviderHelpers.cs (2)
32
using var _ = await RemoteKeepAliveSession.CreateAsync(fixAllContext.State.
Solution
, fixAllContext.CancellationToken).ConfigureAwait(false);
67
var solution = fixAllContext.State.
Solution
;
CodeFixesAndRefactorings\DocumentBasedFixAllProviderHelpers.cs (1)
35
var originalSolution = originalFixAllContext.State.
Solution
;
CodeFixesAndRefactorings\FixAllLogger.cs (1)
86
m[DocumentCount] = fixAllState.
Solution
.Projects.Sum(p => p.DocumentIds.Count);