Implemented interface member:
property
Solution
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllContext.Solution
11 references to Solution
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (1)
62foreach (var project in fixAllContext.Solution.Projects)
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Formatting\CodeCleanupTests.TestFixers.cs (2)
87var solution = fixAllContext.Solution; 143var solution = fixAllContext.Solution;
Microsoft.CodeAnalysis.Features (2)
AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (1)
62foreach (var project in fixAllContext.Solution.Projects)
SyncNamespaces\AbstractSyncNamespacesService.cs (1)
144fixAllContext.Solution, fixAllContext.ProgressTracker, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (2)
Formatting\CodeCleanUpTests.vb (2)
644Dim solution = fixAllContext.Solution 689Dim solution = fixAllContext.Solution
Microsoft.CodeAnalysis.Workspaces (4)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (3)
71var currentSolution = originalFixAllContext.Solution; 142var solution = fixAllContext.Solution; 217var originalDocument = fixAllContext.Solution.GetRequiredDocument(docId);
CodeFixes\FixAllOccurrences\FixAllContextHelper.cs (1)
94fixAllContext.Solution, allDiagnostics, fixAllContext.CancellationToken).ConfigureAwait(false);