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