Print MSBuild command if also printing output
This commit is contained in:
parent
5f079e2ef9
commit
0b68677112
1 changed files with 6 additions and 0 deletions
|
@ -92,6 +92,9 @@ namespace GodotSharpTools.Build
|
||||||
|
|
||||||
bool redirectOutput = !IsDebugMSBuildRequested() && !PrintBuildOutput;
|
bool redirectOutput = !IsDebugMSBuildRequested() && !PrintBuildOutput;
|
||||||
|
|
||||||
|
if (!redirectOutput) // TODO: or if stdout verbose
|
||||||
|
Console.WriteLine($"Running: \"{startInfo.FileName}\" {startInfo.Arguments}");
|
||||||
|
|
||||||
startInfo.RedirectStandardOutput = redirectOutput;
|
startInfo.RedirectStandardOutput = redirectOutput;
|
||||||
startInfo.RedirectStandardError = redirectOutput;
|
startInfo.RedirectStandardError = redirectOutput;
|
||||||
startInfo.UseShellExecute = false;
|
startInfo.UseShellExecute = false;
|
||||||
|
@ -145,6 +148,9 @@ namespace GodotSharpTools.Build
|
||||||
|
|
||||||
bool redirectOutput = !IsDebugMSBuildRequested() && !PrintBuildOutput;
|
bool redirectOutput = !IsDebugMSBuildRequested() && !PrintBuildOutput;
|
||||||
|
|
||||||
|
if (!redirectOutput) // TODO: or if stdout verbose
|
||||||
|
Console.WriteLine($"Running: \"{startInfo.FileName}\" {startInfo.Arguments}");
|
||||||
|
|
||||||
startInfo.RedirectStandardOutput = redirectOutput;
|
startInfo.RedirectStandardOutput = redirectOutput;
|
||||||
startInfo.RedirectStandardError = redirectOutput;
|
startInfo.RedirectStandardError = redirectOutput;
|
||||||
startInfo.UseShellExecute = false;
|
startInfo.UseShellExecute = false;
|
||||||
|
|
Loading…
Reference in a new issue