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