PipelineStep Methods
ClassMethods4 members
Represents a step in the deployment pipeline.
DependsOn(string)Section titled DependsOn(string) Adds a dependency on another step.
public class PipelineStep{ public void DependsOn( string stepName) { // ... }}Parameters
stepNamestringThe name of the step to depend on.DependsOn(PipelineStep)Section titled DependsOn(PipelineStep) Adds a dependency on another step.
public class PipelineStep{ public void DependsOn( PipelineStep step) { // ... }}Parameters
stepPipelineStepThe step to depend on.RequiredBy(string)Section titled RequiredBy(string) Specifies that this step is required by another step. This creates the inverse relationship where the other step will depend on this step.
public class PipelineStep{ public void RequiredBy( string stepName) { // ... }}Parameters
stepNamestringThe name of the step that requires this step.RequiredBy(PipelineStep)Section titled RequiredBy(PipelineStep) Specifies that this step is required by another step. This creates the inverse relationship where the other step will depend on this step.
public class PipelineStep{ public void RequiredBy( PipelineStep step) { // ... }}Parameters
stepPipelineStepThe step that requires this step.