public HelpCommand(CommandContextBase commandContext)
     : base("help", true)
 {
     this.commandContext = commandContext;
     this.CommandName = string.Empty;
     this.SubCommandName = string.Empty;
 }
 public VersionCommand(CommandContextBase commandContext)
     : base("--version", true)
 {
     this.commandContext = commandContext;
 }