13 writes to OutputPath
Aspire.Hosting.Azure.Sandboxes (1)
AzureSandboxGroupResource.cs (1)
226
buildOptions.
OutputPath
= null;
Aspire.Hosting.Azure.Tests (2)
AzureSandboxesTests.cs (2)
2149
options.
OutputPath
= "frontend.tar";
2157
options.
OutputPath
= "backend.tar";
Aspire.Hosting.Tests (10)
Pipelines\DistributedApplicationPipelineTests.cs (1)
2110
ctx.
OutputPath
= "/tmp/output";
Publishing\PodmanSaveArgumentsTests.cs (1)
106
ctx.
OutputPath
= outputPath;
Publishing\ResourceContainerImageManagerTests.cs (8)
133
ctx.
OutputPath
= "/tmp/test-output";
235
ctx.
OutputPath
= tempOutputPath;
279
ctx.
OutputPath
= tempOutputPath;
517
ctx.
OutputPath
= "/tmp/test-path";
660
ctx.
OutputPath
= workspace.WorkspaceRoot.FullName;
698
ctx.
OutputPath
= workspace.WorkspaceRoot.FullName;
1340
ctx.
OutputPath
= Path.Combine(workspace.WorkspaceRoot.FullName, "archives");
1464
ctx.
OutputPath
= Path.Combine(workspace.WorkspaceRoot.FullName, "archives");
6 references to OutputPath
Aspire.Hosting (4)
ApplicationModel\ContainerImageReference.cs (2)
60
if (!string.IsNullOrEmpty(buildOptionsContext.
OutputPath
))
64
return ResourceExtensions.GetContainerImageArchivePath(buildOptionsContext.
OutputPath
, imageName, imageTag);
Pipelines\DistributedApplicationPipeline.cs (1)
251
if (string.IsNullOrEmpty(buildOptionsContext.
OutputPath
))
Publishing\ResourceContainerImageManager.cs (1)
200
options.OutputPath = context.
OutputPath
;
Aspire.Hosting.Azure.Tests (2)
AzureSandboxesTests.cs (2)
2194
Assert.Null(buildOptions.
OutputPath
);
2210
Assert.Null(explicitBuildOptions.
OutputPath
);