7 writes to OutputPath
Aspire.Hosting.Tests (7)
Pipelines\DistributedApplicationPipelineTests.cs (1)
2118ctx.OutputPath = "/tmp/output";
Publishing\ResourceContainerImageManagerTests.cs (6)
131ctx.OutputPath = "/tmp/test-output"; 232ctx.OutputPath = tempOutputPath; 272ctx.OutputPath = Path.Combine(tempDir.Path, "NewFolder"); // tests that the folder is created if it doesn't exist 508ctx.OutputPath = "/tmp/test-path"; 1106ctx.OutputPath = Path.Combine(tempDir.Path, "archives"); 1228ctx.OutputPath = Path.Combine(tempDir.Path, "archives");
4 references to OutputPath
Aspire.Hosting (4)
ApplicationModel\ContainerImageReference.cs (2)
59if (!string.IsNullOrEmpty(buildOptionsContext.OutputPath)) 63return ResourceExtensions.GetContainerImageArchivePath(buildOptionsContext.OutputPath, imageName, imageTag);
Pipelines\DistributedApplicationPipeline.cs (1)
191if (string.IsNullOrEmpty(buildOptionsContext.OutputPath))
Publishing\ResourceContainerImageManager.cs (1)
196options.OutputPath = context.OutputPath;