4 writes to DashboardUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
29
options.
DashboardUrl
= configuration[KnownConfigNames.AspNetCoreUrls];
Aspire.Hosting.Tests (3)
Dashboard\DashboardLifecycleHookTests.cs (2)
129
DashboardUrl
= "http://localhost:8080",
171
DashboardUrl
= "http://localhost:8080",
WithUrlsTests.cs (1)
246
options.
DashboardUrl
= $"http://{dashboardHost}:12345";
5 references to DashboardUrl
Aspire.Hosting (5)
Backchannel\AppHostRpcTarget.cs (1)
151
if (!StringUtils.TryGetUriFromDelimitedString(dashboardOptions.Value.
DashboardUrl
, ";", out var dashboardUri))
Dashboard\DashboardEventHandlers.cs (2)
370
var dashboardUrls = options.
DashboardUrl
;
494
Debug.Assert(options.
DashboardUrl
is not null, "DashboardUrl should not be null");
Dashboard\DashboardOptions.cs (1)
52
if (string.IsNullOrEmpty(options.
DashboardUrl
))
Orchestrator\ApplicationOrchestrator.cs (1)
61
var dashboardUrl = dashboardOptions.Value.
DashboardUrl
?.Split(';', StringSplitOptions.RemoveEmptyEntries).FirstOrDefault();