4 instantiations of DashboardUrlsState
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
373var dashboardUrlsState = new DashboardUrlsState()
Aspire.Cli.Tests (3)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
627Task.FromResult(new DashboardUrlsState
Commands\RunCommandTests.cs (1)
297return Task.FromResult(new DashboardUrlsState
TestServices\TestAppHostBackchannel.cs (1)
55new DashboardUrlsState
10 references to DashboardUrlsState
aspire (7)
Backchannel\AppHostBackchannel.cs (4)
18Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken); 51public async Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken) 58var state = await rpc.InvokeWithCancellationAsync<DashboardUrlsState>(
Backchannel\BackchannelJsonSerializerContext.cs (1)
16[JsonSerializable(typeof(DashboardUrlsState))]
Backchannel\ExtensionBackchannel.cs (1)
373var dashboardUrlsState = new DashboardUrlsState()
Commands\RunCommand.cs (1)
184var dashboardUrls = await _interactionService.ShowStatusAsync(RunCommandStrings.StartingDashboard, async () =>
Aspire.Cli.Tests (3)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
626public Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken) =>
TestServices\TestAppHostBackchannel.cs (2)
16public Func<CancellationToken, Task<DashboardUrlsState>>? GetDashboardUrlsAsyncCallback { get; set; } 49public Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken)