2 writes to DashboardUrl
aspire (2)
Commands\PsCommand.cs (2)
315DashboardUrl = appHost.DashboardUrl, 388DashboardUrl = dashboardUrl,
8 references to DashboardUrl
aspire (5)
Commands\PsCommand.cs (5)
315DashboardUrl = appHost.DashboardUrl, 429if (!string.IsNullOrEmpty(appHost.DashboardUrl)) 431if (Uri.TryCreate(appHost.DashboardUrl, UriKind.Absolute, out _)) 433dashboard = MarkupHelpers.SafeLink(InteractionService, appHost.DashboardUrl); 437dashboard = Markup.Escape(appHost.DashboardUrl);
Aspire.Cli.Tests (3)
Commands\PsCommandTests.cs (3)
174Assert.Equal("http://localhost:18888/login?t=abc123", first.DashboardUrl); 181Assert.Null(second.DashboardUrl); 346Assert.Equal("http://localhost:18888", appHosts[0].DashboardUrl);