2 implementations of Solution
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
30
public Solution
Solution
=> State.Solution;
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
63
public Solution
Solution
=> Project.Solution;
3 references to Solution
Microsoft.CodeAnalysis.Workspaces (3)
CodeFixesAndRefactorings\DefaultFixAllProviderHelpers.cs (2)
33
using var _ = await RemoteKeepAliveSession.CreateAsync(fixAllContext.
Solution
, fixAllContext.CancellationToken).ConfigureAwait(false);
68
var solution = fixAllContext.
Solution
;
CodeFixesAndRefactorings\DocumentBasedFixAllProviderHelpers.cs (1)
35
var originalSolution = originalFixAllContext.
Solution
;