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