12 references to GetChangedSolutionInternalAsync
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (3)
FixAllGetFixesService.cs (2)
45return await codeAction.GetChangedSolutionInternalAsync(fixAllContext.Solution, cancellationToken: fixAllContext.CancellationToken).ConfigureAwait(false); 126var newSolution = await codeAction.GetChangedSolutionInternalAsync(
FixMultipleOccurrencesService.cs (1)
89newSolution = fixMultipleCodeAction.GetChangedSolutionInternalAsync(
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
CodeFixes\CodeFixServiceTests.cs (1)
824var solution = await codeAction.GetChangedSolutionInternalAsync(txtDocument.Project.Solution);
CodeRefactorings\CodeRefactoringServiceTest.cs (2)
189var solution = await codeAction.GetChangedSolutionInternalAsync(project.Solution); 228var solution = await codeAction.GetChangedSolutionInternalAsync(project.Solution);
Microsoft.CodeAnalysis.EditorFeatures.Wpf (3)
Suggestions\FixAll\FixAllGetFixesService.cs (2)
45return await codeAction.GetChangedSolutionInternalAsync(fixAllContext.Solution, cancellationToken: fixAllContext.CancellationToken).ConfigureAwait(false); 126var newSolution = await codeAction.GetChangedSolutionInternalAsync(
Suggestions\FixAll\FixMultipleOccurrencesService.cs (1)
89newSolution = fixMultipleCodeAction.GetChangedSolutionInternalAsync(
Microsoft.CodeAnalysis.Features (2)
AddConstructorParametersFromMembers\AddConstructorParametersFromMembersCodeRefactoringProvider.cs (1)
183var changedSolution = await action.GetChangedSolutionInternalAsync(
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
383var changedSolution = await codeAction.GetChangedSolutionInternalAsync(
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
169var changedSolution = await codeAction.GetChangedSolutionInternalAsync(solution, cancellationToken: cancellationToken).ConfigureAwait(false);