8 writes to DashboardUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
39
options.
DashboardUrl
= configuration[KnownAspNetCoreConfigNames.Urls];
Aspire.Hosting.Tests (7)
Dashboard\DashboardEventHandlersTests.cs (6)
238
DashboardUrl
= "http://localhost:8080",
290
DashboardUrl
= "http://localhost:8080",
342
DashboardUrl
= "http://localhost:8080",
383
DashboardUrl
= "http://localhost:8080",
432
DashboardUrl
= configuredUrl,
514
DashboardUrl
= "http://localhost:18888",
WithUrlsTests.cs (1)
246
options.
DashboardUrl
= $"http://{dashboardHost}:12345";
4 references to DashboardUrl
Aspire.Hosting (4)
Backchannel\DashboardUrlsHelper.cs (1)
109
if (StringUtils.TryGetUriFromDelimitedString(dashboardOptions.
DashboardUrl
, ";", out var dashboardUri))
Dashboard\DashboardEventHandlers.cs (2)
364
var dashboardUrls = options.
DashboardUrl
;
527
}, options.
DashboardUrl
).ConfigureAwait(false);
Orchestrator\ApplicationOrchestrator.cs (1)
66
var dashboardUrl = dashboardOptions.Value.
DashboardUrl
?.Split(';', StringSplitOptions.RemoveEmptyEntries).FirstOrDefault();