10 references to GetComponentPath
aspire (5)
Layout\LayoutConfiguration.cs (3)
80public string? GetDcpPath() => GetComponentPath(LayoutComponent.Dcp); 88var managedDir = GetComponentPath(LayoutComponent.Managed); 103var dashboardDir = GetComponentPath(LayoutComponent.Dashboard);
Layout\LayoutDiscovery.cs (2)
134return layout?.GetComponentPath(component); 361var dcpPath = layout.GetComponentPath(LayoutComponent.Dcp);
Aspire.Cli.Tests (5)
Commands\DashboardRunCommandTests.cs (1)
735public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => layout.GetComponentPath(component);
DotNet\ProcessExecutionDetachedTests.cs (1)
525return layout.GetComponentPath(component);
Projects\PrebuiltAppHostServerTests.cs (2)
2938var dashboardDirectory = Assert.IsType<string>(layout.GetComponentPath(LayoutComponent.Dashboard)); 3049public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => layout.GetComponentPath(component);
Utils\CliTestHelper.cs (1)
784_layout?.GetComponentPath(component) ??