1 write to DashboardUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
27options.DashboardUrl = configuration[KnownConfigNames.AspNetCoreUrls];
7 references to DashboardUrl
Aspire.Hosting (7)
Backchannel\AppHostRpcTarget.cs (1)
134if (!StringUtils.TryGetUriFromDelimitedString(dashboardOptions.Value.DashboardUrl, ";", out var dashboardUri))
Dashboard\DashboardLifecycleHook.cs (4)
152if (StringUtils.TryGetUriFromDelimitedString(dashboardOptions.Value.DashboardUrl, ";", out var firstDashboardUrl)) 204Debug.Assert(options.DashboardUrl is not null, "DashboardUrl should not be null"); 214context.EnvironmentVariables[DashboardConfigNames.DashboardFrontendUrlName.EnvVarName] = options.DashboardUrl; 307if (!StringUtils.TryGetUriFromDelimitedString(options.DashboardUrl, ";", out var firstDashboardUrl))
Dashboard\DashboardOptions.cs (1)
48if (string.IsNullOrEmpty(options.DashboardUrl))
DistributedApplicationBuilder.cs (1)
396if (StringUtils.TryGetUriFromDelimitedString(dashboardOptions.DashboardUrl, ";", out var firstDashboardUrl))