public static Bootstrapper AddBuildCommands(this Bootstrapper bootstrapper) { _ = bootstrapper ?? throw new ArgumentNullException(nameof(bootstrapper)); bootstrapper.SetDefaultCommand <PipelinesCommand <PipelinesCommandSettings> >(); bootstrapper.AddCommand <PipelinesCommand <PipelinesCommandSettings> >(); bootstrapper.AddCommand <DeployCommand>(); bootstrapper.AddCommands(); return(bootstrapper); }