Skip to content
Docs Try Aspire

IPipelineOutputService Methods

Interface Methods 4 members
Service for managing pipeline output directories.
GetOutputDirectory Section titled GetOutputDirectory abstract string
Gets the output directory for deployment artifacts. If no output path is configured, defaults to {CurrentDirectory}/aspire-output.
public interface IPipelineOutputService
{
public abstract string GetOutputDirectory()
{
// ...
}
}
string The path to the output directory for deployment artifacts.
GetOutputDirectory(IResource) Section titled GetOutputDirectory(IResource) abstract string
Gets the output directory for a specific resource's deployment artifacts.
public interface IPipelineOutputService
{
public abstract string GetOutputDirectory(
IResource resource)
{
// ...
}
}
resource IResource The resource to get the output directory for.
string The path to the output directory for the resource's deployment artifacts.
GetTempDirectory Section titled GetTempDirectory abstract string
Gets a temporary directory for build artifacts.
public interface IPipelineOutputService
{
public abstract string GetTempDirectory()
{
// ...
}
}
string The path to a temporary directory for build artifacts.
GetTempDirectory(IResource) Section titled GetTempDirectory(IResource) abstract string
Gets a temporary directory for a specific resource's build artifacts.
public interface IPipelineOutputService
{
public abstract string GetTempDirectory(
IResource resource)
{
// ...
}
}
resource IResource The resource to get the temporary directory for.
string The path to a temporary directory for the resource's build artifacts.