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