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