Esempio n. 1
0
        public static Process StartCommand(string serverBinPath, Commands.Command command)
        {
            AXBuild axBuild = NewServerBinPath(serverBinPath);

            return(axBuild.Start(command.Parameters()));
        }
Esempio n. 2
0
        public static void ExecuteCommand(string serverBinPath, Commands.Command command, int timeOutMinutes)
        {
            AXBuild axBuild = NewServerBinPath(serverBinPath);

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