3 implementations of GetDashboardUrlsAsync
aspire (1)
Backchannel\AppHostCliBackchannel.cs (1)
52public async Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
854public Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken) =>
TestServices\TestAppHostCliBackchannel.cs (1)
49public Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken)
1 reference to GetDashboardUrlsAsync
aspire (1)
Commands\RunCommand.cs (1)
248var dashboardUrls = await InteractionService.ShowStatusAsync(RunCommandStrings.StartingDashboard, async () => { return await backchannel.GetDashboardUrlsAsync(cancellationToken); });