Axiom.Documentation.BuildProcess.BeforeExecuteStep C# (CSharp) Method

BeforeExecuteStep() public method

Called before a step is executed during a help build.
public BeforeExecuteStep ( IBuildStep step, BuildContext context ) : bool
step IBuildStep implementation to be executed.
context BuildContext Provides information about the build process.
return bool
        public override bool BeforeExecuteStep(IBuildStep step, BuildContext context)
        {
            stepStart = DateTime.Now;

            return true;
        }