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",
177
DashboardUrl
= "http://localhost:8080",
WithUrlsTests.cs (1)
245
options.
DashboardUrl
= $"http://{dashboardHost}:12345";
5 references to DashboardUrl
Aspire.Hosting (5)
Backchannel\AppHostRpcTarget.cs (1)
199
if (!StringUtils.TryGetUriFromDelimitedString(dashboardOptions.Value.
DashboardUrl
, ";", out var dashboardUri))
Dashboard\DashboardEventHandlers.cs (2)
373
var dashboardUrls = options.
DashboardUrl
;
497
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)
64
var dashboardUrl = dashboardOptions.Value.
DashboardUrl
?.Split(';', StringSplitOptions.RemoveEmptyEntries).FirstOrDefault();