4 writes to OutputPath
Aspire.Hosting.Tests (4)
Publishing\ResourceContainerImageBuilderTests.cs (4)
99OutputPath = "/tmp/test-output", 208OutputPath = tempOutputPath, 248OutputPath = tempOutputPath, 377OutputPath = "/custom/path",
9 references to OutputPath
Aspire.Hosting (8)
Publishing\DockerContainerRuntime.cs (4)
23if (string.IsNullOrEmpty(options?.OutputPath)) 55if (options?.ImageFormat is not null || !string.IsNullOrEmpty(options?.OutputPath)) 65if (!string.IsNullOrEmpty(options?.OutputPath)) 67outputType += $",dest={Path.Combine(options.OutputPath, resourceName)}.tar";
Publishing\PodmanContainerRuntime.cs (2)
37if (!string.IsNullOrEmpty(options?.OutputPath)) 41arguments += $" --output \"{Path.Combine(options.OutputPath, resourceName)}.tar\"";
Publishing\ResourceContainerImageBuilder.cs (2)
261if (!string.IsNullOrEmpty(options.OutputPath)) 263arguments += $" /p:ContainerArchiveOutputPath=\"{options.OutputPath}\"";
Aspire.Hosting.Tests (1)
Publishing\ResourceContainerImageBuilderTests.cs (1)
382Assert.Equal("/custom/path", options.OutputPath);