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