2 writes to OutputPath
Aspire.Hosting (1)
Publishing\ResourceContainerImageManager.cs (1)
467
OutputPath
= options.OutputPath,
Aspire.Hosting.Tests (1)
Publishing\ResourceContainerImageManagerTests.cs (1)
392
OutputPath
= "/custom/path",
7 references to OutputPath
Aspire.Hosting (6)
Publishing\DockerContainerRuntime.cs (4)
34
if (string.IsNullOrEmpty(options?.
OutputPath
))
66
if (options?.ImageFormat is not null || !string.IsNullOrEmpty(options?.
OutputPath
))
76
if (!string.IsNullOrEmpty(options?.
OutputPath
))
78
var archivePath = ResourceExtensions.GetContainerImageArchivePath(options.
OutputPath
, resourceName, imageTag: null);
Publishing\PodmanContainerRuntime.cs (2)
46
if (!string.IsNullOrEmpty(options?.
OutputPath
))
50
arguments += $" --output \"{Path.Combine(options.
OutputPath
, resourceName)}.tar\"";
Aspire.Hosting.Tests (1)
Publishing\ResourceContainerImageManagerTests.cs (1)
397
Assert.Equal("/custom/path", options.
OutputPath
);