2 writes to OutputPath
Aspire.Hosting (1)
Publishing\ResourceContainerImageManager.cs (1)
465
OutputPath
= options.OutputPath,
Aspire.Hosting.Tests (1)
Publishing\ResourceContainerImageManagerTests.cs (1)
395
OutputPath
= "/custom/path",
7 references to OutputPath
Aspire.Hosting (6)
Publishing\DockerContainerRuntime.cs (4)
33
if (string.IsNullOrEmpty(options?.
OutputPath
))
65
if (options?.ImageFormat is not null || !string.IsNullOrEmpty(options?.
OutputPath
))
75
if (!string.IsNullOrEmpty(options?.
OutputPath
))
77
var archivePath = ResourceExtensions.GetContainerImageArchivePath(options.
OutputPath
, resourceName, imageTag: null);
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)
400
Assert.Equal("/custom/path", options.
OutputPath
);