Skip to content
Docs Try Aspire
Docs Try

PipelineStep

Handle
📦 Aspire.Hosting v13.3.0
interface PipelineStep {
readonly description: string;
readonly name: string;
addTag(tag: string): void;
dependsOn(stepName: string): void;
requiredBy(stepName: string): void;
}

Properties

property description string get
Gets the human-readable description of the step
property name string get
Gets the unique name of the step

Methods

method addTag
Adds a tag to the step
addTag(tag: string): void
tag string
Adds a dependency on another step by name
dependsOn(stepName: string): void
stepName string
Specifies that another step requires this step by name
requiredBy(stepName: string): void
stepName string