Axiom.Documentation.BuildProcess.BeforeExecuteStep C# (CSharp) Méthode

BeforeExecuteStep() public méthode

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.
Résultat bool
        public override bool BeforeExecuteStep(IBuildStep step, BuildContext context)
        {
            stepStart = DateTime.Now;

            return true;
        }