12 overrides of GetChangedSolutionAsync
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
AbstractUpgradeProjectCodeFixProvider.cs (1)
117protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
CustomCodeActions.cs (1)
79protected sealed override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
CodeActions\ApplyChangesOperationTests.cs (1)
52protected override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
CodeActions\Preview\ErrorCases\ExceptionInCodeAction.cs (1)
52protected override Task<Solution> GetChangedSolutionAsync(CancellationToken cancellationToken)
CodeActions\Preview\PreviewTests.cs (1)
72protected override Task<Solution> GetChangedSolutionAsync(CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (3)
AddConstructorParametersFromMembers\AddConstructorParametersFromMembersCodeRefactoringProvider.AddConstructorParametersCodeAction.cs (1)
53protected override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.RemoveSuppressionCodeAction_Attribute.cs (1)
59protected override async Task<Solution> GetChangedSolutionAsync(CancellationToken cancellationToken)
GenerateMember\GenerateVariable\AbstractGenerateVariableService.GenerateParameterCodeAction.cs (1)
44protected override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (1)
CodeActions\Preview\PreviewTests.vb (1)
47Protected Overrides Function GetChangedSolutionAsync(cancellationToken As CancellationToken) As Task(Of Solution)
Microsoft.CodeAnalysis.Workspaces (3)
CodeActions\CodeAction.cs (2)
617protected sealed override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken) 638protected sealed override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
CustomCodeActions.cs (1)
79protected sealed override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
3 references to GetChangedSolutionAsync
Microsoft.CodeAnalysis.Workspaces (3)
CodeActions\CodeAction.cs (3)
187var changedSolution = await GetChangedSolutionAsync(cancellationToken).ConfigureAwait(false); 228return GetChangedSolutionAsync(cancellationToken); 237/// implementation of <see cref="GetChangedSolutionAsync(CancellationToken)"/> for code actions that only need