9 implementations of GetComponentPath
aspire (1)
Layout\LayoutDiscovery.cs (1)
117public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
Aspire.Cli.Tests (8)
BundleServiceIntegrationTests.cs (1)
813public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
Commands\AppHostLauncherTests.cs (1)
1752public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => null;
Commands\DashboardRunCommandTests.cs (1)
735public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => layout.GetComponentPath(component);
DotNet\ProcessExecutionDetachedTests.cs (1)
522public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
Processes\ProcessTreeGracefulShutdownServiceTests.cs (1)
403public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
Projects\PrebuiltAppHostServerTests.cs (1)
3049public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => layout.GetComponentPath(component);
Utils\CliTestHelper.cs (2)
761public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => null; 783public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) =>
3 references to GetComponentPath
aspire (3)
Commands\DcpWorkloadCleanupService.cs (1)
27layoutDiscovery.GetComponentPath(LayoutComponent.Dcp, executionContext.WorkingDirectory.FullName);
Processes\DcpExecutableResolver.cs (1)
29layoutDiscovery.GetComponentPath(LayoutComponent.Dcp, executionContext.WorkingDirectory.FullName);
Utils\EnvironmentChecker\DcpConnectionHealthCheck.cs (1)
37var dcpDirectory = layoutDiscovery.GetComponentPath(LayoutComponent.Dcp, executionContext.WorkingDirectory.FullName);