Exemplo n.º 1
0
 public static void ConfirmSuccess(this ProcessExitResult result)
 {
     if (result.ExitCode != 0)
     {
         throw result.GenerateException();
     }
 }