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