10 implementations of GetComponentPath
aspire (1)
Layout\LayoutDiscovery.cs (1)
117public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
Aspire.Cli.Tests (9)
BundleServiceIntegrationTests.cs (1)
650public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
Commands\AppHostLauncherTests.cs (1)
1584public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => null;
Commands\DashboardRunCommandTests.cs (1)
671public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => layout.GetComponentPath(component);
DotNet\ProcessExecutionDetachedTests.cs (1)
522public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
NuGet\BundleNuGetServiceTests.cs (1)
430public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => layout.GetComponentPath(component);
Processes\ProcessTreeGracefulShutdownServiceTests.cs (1)
403public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null)
Projects\PrebuiltAppHostServerTests.cs (1)
3032public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => layout.GetComponentPath(component);
Utils\CliTestHelper.cs (2)
752public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => null; 774public 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)
32var dcpDirectory = layoutDiscovery.GetComponentPath(LayoutComponent.Dcp, executionContext.WorkingDirectory.FullName);