12 references to LayoutComponent
aspire (11)
Layout\LayoutConfiguration.cs (6)
55public string? GetComponentPath(LayoutComponent component) 64LayoutComponent.Cli => Components.Cli, 65LayoutComponent.Dcp => Components.Dcp, 66LayoutComponent.Managed => Components.Managed, 76public string? GetDcpPath() => GetComponentPath(LayoutComponent.Dcp); 84var managedDir = GetComponentPath(LayoutComponent.Managed);
Layout\LayoutDiscovery.cs (5)
25string? GetComponentPath(LayoutComponent component, string? projectDirectory = null); 71public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) 76LayoutComponent.Dcp => Environment.GetEnvironmentVariable(BundleDiscovery.DcpPathEnvVar), 77LayoutComponent.Managed => Environment.GetEnvironmentVariable(BundleDiscovery.ManagedPathEnvVar), 248var dcpPath = layout.GetComponentPath(LayoutComponent.Dcp);
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
566public string? GetComponentPath(LayoutComponent component, string? projectDirectory = null) => null;