Ejemplo n.º 1
0
 public Process Start(Commands.Command command)
 {
     return(Start(command.Parameters()));
 }
Ejemplo n.º 2
0
        public static Process StartCommand(string serverBinPath, Commands.Command command)
        {
            AXBuild axBuild = NewServerBinPath(serverBinPath);

            return(axBuild.Start(command.Parameters()));
        }
Ejemplo n.º 3
0
 public void Execute(Commands.Command command, int timeOutMinutes)
 {
     Execute(command.Parameters(), timeOutMinutes);
 }
Ejemplo n.º 4
0
        public static void ExecuteCommand(string serverBinPath, Commands.Command command, int timeOutMinutes)
        {
            AXBuild axBuild = NewServerBinPath(serverBinPath);

            axBuild.Execute(command.Parameters(), timeOutMinutes);
        }