8 overrides of GetChangedSolutionAsync
Microsoft.CodeAnalysis.Analyzers (3)
MetaAnalyzers\Fixers\AnalyzerReleaseTrackingFix.FixAllProvider.cs (2)
89protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken) 173protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
MetaAnalyzers\Fixers\DefineDiagnosticDescriptorArgumentsCorrectlyFix.CustomFixAllProvider.cs (1)
96protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Analyzers\Core\CodeFixes\UpgradeProject\AbstractUpgradeProjectCodeFixProvider.cs (1)
117protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
Microsoft.CodeAnalysis.PublicApiAnalyzers.CodeFixes (4)
AnnotatePublicApiFix.cs (1)
108protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
DeclarePublicApiFix.cs (2)
203protected override Task<Solution> GetChangedSolutionAsync(CancellationToken cancellationToken) 227protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
NullableEnablePublicApiFix.cs (1)
85protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
5 references to GetChangedSolutionAsync
Microsoft.CodeAnalysis.Workspaces (5)
CodeActions\CodeAction.cs (5)
127static codeAction => new Func<CancellationToken, Task<Solution?>>(codeAction.GetChangedSolutionAsync).Method.DeclaringType != typeof(CodeAction)); 337/// cref="GetChangedSolutionAsync(CancellationToken)"/> when computation is long running and progress should be 346return await GetChangedSolutionAsync(cancellationToken).ConfigureAwait(false); 371/// implementation of <see cref="GetChangedSolutionAsync(CancellationToken)"/> for code actions that only need 387/// implementation of <see cref="GetChangedSolutionAsync(CancellationToken)"/> for code actions that only need