2 implementations of GetCurrentSolutionAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
EditAndContinue\EditorHostSolutionProvider.cs (1)
20public ValueTask<Solution> GetCurrentSolutionAsync(CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices.DevKit (1)
EditAndContinue\LspSolutionSnapshotProvider.cs (1)
26public async ValueTask<Solution> GetCurrentSolutionAsync(CancellationToken cancellationToken)
8 references to GetCurrentSolutionAsync
Microsoft.CodeAnalysis.EditorFeatures (4)
EditAndContinue\ManagedHotReloadLanguageServiceImpl.cs (4)
85var currentSolution = await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false); 125var solution = (inBreakState == true) ? await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false) : null; 256var newSolution = await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false); 290var solution = await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false);
Microsoft.VisualStudio.LanguageServices.DevKit (4)
src\EditorFeatures\Core\EditAndContinue\ManagedHotReloadLanguageServiceImpl.cs (4)
85var currentSolution = await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false); 125var solution = (inBreakState == true) ? await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false) : null; 256var newSolution = await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false); 290var solution = await solutionSnapshotProvider.GetCurrentSolutionAsync(cancellationToken).ConfigureAwait(false);