7 references to DashboardLaunchHelper
aspire (4)
Projects\DotNetAppHostProject.cs (2)
2629
var supportsNativeDashboard =
DashboardLaunchHelper
.SupportsNativeDashboard(hostingVersion);
2630
if (
DashboardLaunchHelper
.GetDashboardPath(layout, supportsNativeDashboard) is { } dashboardPath)
Projects\PrebuiltAppHostServer.cs (2)
266
DashboardLaunchHelper
.SupportsNativeDashboard(hostingVersion);
1539
if (
DashboardLaunchHelper
.GetDashboardPath(_layout, _supportsNativeDashboard) is { } dashboardPath)
Aspire.Cli.Tests (3)
Layout\LayoutConfigurationTests.cs (3)
33
Assert.Equal(expected,
DashboardLaunchHelper
.SupportsNativeDashboard(version));
69
Assert.Equal(expected,
DashboardLaunchHelper
.GetDashboardPath(layout, supportsNativeDashboard));
77
Assert.Null(
DashboardLaunchHelper
.GetDashboardPath(new LayoutConfiguration(), supportsNativeDashboard));