2 implementations of CheckAsync
aspire (1)
DotNet\DotNetSdkInstaller.cs (1)
25public async Task<(bool Success, string? HighestVersion, string MinimumRequiredVersion, bool ForceInstall)> CheckAsync(CancellationToken cancellationToken = default)
Aspire.Cli.Tests (1)
TestServices\TestDotNetSdkInstaller.cs (1)
13public Task<(bool Success, string? HighestVersion, string MinimumRequiredVersion, bool ForceInstall)> CheckAsync(CancellationToken cancellationToken = default)
2 references to CheckAsync
aspire (2)
NuGet\NuGetPackagePrefetcher.cs (1)
23var (sdkAvailable, _, _, _) = await sdkInstaller.CheckAsync(stoppingToken);
Utils\SdkInstallHelper.cs (1)
38var (success, highestVersion, minimumRequiredVersion, forceInstall) = await sdkInstaller.CheckAsync(cancellationToken);