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)
97protected 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)
117protected override async Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken)
DeclarePublicApiFix.cs (2)
215protected override Task<Solution?> GetChangedSolutionAsync(CancellationToken cancellationToken) 239protected 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)
131static codeAction => new Func<CancellationToken, Task<Solution?>>(codeAction.GetChangedSolutionAsync).Method.DeclaringType != typeof(CodeAction)); 341/// cref="GetChangedSolutionAsync(CancellationToken)"/> when computation is long running and progress should be 350return await GetChangedSolutionAsync(cancellationToken).ConfigureAwait(false); 375/// implementation of <see cref="GetChangedSolutionAsync(CancellationToken)"/> for code actions that only need 391/// implementation of <see cref="GetChangedSolutionAsync(CancellationToken)"/> for code actions that only need