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