3 writes to DashboardUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
27options.DashboardUrl = configuration[KnownConfigNames.AspNetCoreUrls];
Aspire.Hosting.Tests (2)
Dashboard\DashboardLifecycleHookTests.cs (2)
129DashboardUrl = "http://localhost:8080", 165DashboardUrl = "http://localhost:8080",
4 references to DashboardUrl
Aspire.Hosting (4)
Backchannel\AppHostRpcTarget.cs (1)
151if (!StringUtils.TryGetUriFromDelimitedString(dashboardOptions.Value.DashboardUrl, ";", out var dashboardUri))
Dashboard\DashboardLifecycleHook.cs (2)
155var dashboardUrls = options.DashboardUrl; 248Debug.Assert(options.DashboardUrl is not null, "DashboardUrl should not be null");
Dashboard\DashboardOptions.cs (1)
48if (string.IsNullOrEmpty(options.DashboardUrl))