public CmdExeGui cmd(string cmdToExecute, int postExecutionDelay) { //GuiHandle = CmdExeApi.currentWindow(); CmdExeApi.hostCmd(cmdToExecute, postExecutionDelay); selectThis(); return(this); }
public void launch(string executableToLaunch) { if (pathToCdb.fileExists().isFalse()) { "Aborting launch since could not find .NET Debugger (cdb.exe) in the expected path: {0}".error(pathToCdb); return ; } cmdApi = new CmdExeApi(pathToCdb, executableToLaunch , dataReceived); cmdApi.MinimizeHostWindow = true; cmdApi.start(); cmdApi.hostCmd(extraExecutionCommand); }
public void launch(string executableToLaunch) { if (pathToCdb.fileExists().isFalse()) { "Aborting launch since could not find .NET Debugger (cdb.exe) in the expected path: {0}".error(pathToCdb); return; } cmdApi = new CmdExeApi(pathToCdb, executableToLaunch, dataReceived); cmdApi.MinimizeHostWindow = true; cmdApi.start(); cmdApi.hostCmd(extraExecutionCommand); }