5 references to GetContainerImageArchivePath
Aspire.Hosting (3)
ApplicationModel\ContainerImageReference.cs (1)
64return ResourceExtensions.GetContainerImageArchivePath(buildOptionsContext.OutputPath, imageName, imageTag);
Publishing\DockerContainerRuntime.cs (1)
73var archivePath = ResourceExtensions.GetContainerImageArchivePath(options.OutputPath, imageName);
Publishing\PodmanContainerRuntime.cs (1)
279var archivePath = ResourceExtensions.GetContainerImageArchivePath(options.OutputPath!, imageName);
Aspire.Hosting.Tests (2)
Publishing\PodmanSaveArgumentsTests.cs (1)
83var dockerArchivePath = ResourceExtensions.GetContainerImageArchivePath(outputPath, "registry.example.com/team/myapp:1.2.3");
Publishing\ResourceContainerImageManagerTests.cs (1)
1573var expectedArchivePath = ResourceExtensions.GetContainerImageArchivePath(outputPath, builtImageName);