2 writes to OutputPath
Aspire.Hosting (1)
Publishing\ResourceContainerImageManager.cs (1)
426OutputPath = options.OutputPath,
Aspire.Hosting.Tests (1)
Publishing\ResourceContainerImageManagerTests.cs (1)
396OutputPath = "/custom/path",
7 references to OutputPath
Aspire.Hosting (6)
Publishing\DockerContainerRuntime.cs (4)
32if (string.IsNullOrEmpty(options?.OutputPath)) 64if (options?.ImageFormat is not null || !string.IsNullOrEmpty(options?.OutputPath)) 74if (!string.IsNullOrEmpty(options?.OutputPath)) 76outputType += $",dest={Path.Combine(options.OutputPath, resourceName)}.tar";
Publishing\PodmanContainerRuntime.cs (2)
45if (!string.IsNullOrEmpty(options?.OutputPath)) 49arguments += $" --output \"{Path.Combine(options.OutputPath, resourceName)}.tar\"";
Aspire.Hosting.Tests (1)
Publishing\ResourceContainerImageManagerTests.cs (1)
401Assert.Equal("/custom/path", options.OutputPath);