1 write to OutputPath
Aspire.Hosting.Tests (1)
ManifestGenerationTests.cs (1)
290
options.
OutputPath
= program.AppBuilder.AppHostDirectory;
7 references to OutputPath
Aspire.Hosting (4)
Pipelines\PipelineOutputService.cs (2)
40
_outputPath = options.Value.
OutputPath
is not null ? Path.GetFullPath(options.Value.
OutputPath
) : null;
Publishing\ManifestPublishingExtensions.cs (2)
38
if (pipelineOptions.Value.
OutputPath
== null)
45
var outputPath = pipelineOptions.Value.
OutputPath
;
Aspire.Hosting.Tests (3)
DistributedApplicationBuilderTests.cs (3)
68
Assert.Null(options.Value.
OutputPath
);
90
Assert.Equal("/tmp/", pipelineOptions.Value.
OutputPath
);
101
Assert.Equal("/path/", pipelineOptions.Value.
OutputPath
);