3 implementations of GetDashboardUrlsAsync
aspire (1)
Backchannel\AppHostBackchannel.cs (1)
51
public async Task<DashboardUrlsState>
GetDashboardUrlsAsync
(CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
716
public Task<DashboardUrlsState>
GetDashboardUrlsAsync
(CancellationToken cancellationToken) =>
TestServices\TestAppHostBackchannel.cs (1)
49
public Task<DashboardUrlsState>
GetDashboardUrlsAsync
(CancellationToken cancellationToken)
1 reference to GetDashboardUrlsAsync
aspire (1)
Commands\RunCommand.cs (1)
186
var dashboardUrls = await _interactionService.ShowStatusAsync(RunCommandStrings.StartingDashboard, async () => { return await backchannel.
GetDashboardUrlsAsync
(cancellationToken); });