5 writes to DashboardUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
30
options.
DashboardUrl
= configuration[KnownConfigNames.AspNetCoreUrls];
Aspire.Hosting.Tests (4)
Dashboard\DashboardLifecycleHookTests.cs (3)
132
DashboardUrl
= "http://localhost:8080",
180
DashboardUrl
= "http://localhost:8080",
221
DashboardUrl
= configuredUrl,
WithUrlsTests.cs (1)
246
options.
DashboardUrl
= $"http://{dashboardHost}:12345";
5 references to DashboardUrl
Aspire.Hosting (5)
Backchannel\DashboardUrlsHelper.cs (1)
91
if (StringUtils.TryGetUriFromDelimitedString(dashboardOptions.
DashboardUrl
, ";", out var dashboardUri))
Dashboard\DashboardEventHandlers.cs (2)
367
var dashboardUrls = options.
DashboardUrl
;
546
Debug.Assert(options.
DashboardUrl
is not null, "DashboardUrl should not be null");
Dashboard\DashboardOptions.cs (1)
54
if (string.IsNullOrEmpty(options.
DashboardUrl
))
Orchestrator\ApplicationOrchestrator.cs (1)
64
var dashboardUrl = dashboardOptions.Value.
DashboardUrl
?.Split(';', StringSplitOptions.RemoveEmptyEntries).FirstOrDefault();