13 writes to OutputPath
Aspire.Hosting (1)
Publishing\ResourceContainerImageManager.cs (1)
495
OutputPath
= options.OutputPath,
Aspire.Hosting.Tests (12)
Publishing\PodmanSaveArgumentsTests.cs (11)
24
OutputPath
= Path.Combine("out", "archives"),
41
OutputPath
= Path.Combine("out", "archives"),
58
OutputPath
= Path.Combine("out", "archives")
77
OutputPath
= outputPath,
122
OutputPath
= outputPath,
141
OutputPath
= "out",
161
OutputPath
= outputPath,
183
OutputPath
= outputPath,
204
OutputPath
= "out",
226
OutputPath
= "out",
248
OutputPath
= "out",
Publishing\ResourceContainerImageManagerTests.cs (1)
404
OutputPath
= "/custom/path",
8 references to OutputPath
Aspire.Hosting (7)
Publishing\DockerContainerRuntime.cs (4)
35
if (string.IsNullOrEmpty(options?.
OutputPath
))
61
if (options?.ImageFormat is not null || !string.IsNullOrEmpty(options?.
OutputPath
))
71
if (!string.IsNullOrEmpty(options?.
OutputPath
))
73
var archivePath = ResourceExtensions.GetContainerImageArchivePath(options.
OutputPath
, imageName);
Publishing\PodmanContainerRuntime.cs (3)
151
if (options.ImageFormat == ContainerImageFormat.Oci && string.IsNullOrEmpty(options.
OutputPath
))
227
if (!string.IsNullOrEmpty(options?.
OutputPath
))
279
var archivePath = ResourceExtensions.GetContainerImageArchivePath(options.
OutputPath
!, imageName);
Aspire.Hosting.Tests (1)
Publishing\ResourceContainerImageManagerTests.cs (1)
409
Assert.Equal("/custom/path", options.
OutputPath
);