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