You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewTimeoutException($"Process '{fileName}{arguments}' in working directory '{workingDirectory}' did not complete in {procTimeout}.");
124
144
}
145
+
146
+
if(testProcess.ExitCode!=0)
147
+
{
148
+
thrownewInvalidOperationException($"Process '{fileName}{arguments}' in working directory '{workingDirectory}' exited with code '{testProcess.ExitCode}'.{Environment.NewLine}"+
ProcessWrapper.RunProcess(Path.Combine(unzipPath,"ZippedExe.exe"),string.Empty,unzipPath, o =>exeOutput=o, e =>exeError=e);
122
+
ProcessHelper.RunProcess(Path.Combine(unzipPath,"ZippedExe.exe"),string.Empty,unzipPath, o =>exeOutput+=o+Environment.NewLine, e =>exeError+=e+Environment.NewLine);
0 commit comments