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