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