diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-03-06 16:57:02 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-03-06 17:10:14 +0100 |
commit | 0b68677112f3d0285e249b23fecc486bd7d9bfd3 (patch) | |
tree | 2c06a079fc15e9bd1b93f11265930115d3401973 /modules | |
parent | 5f079e2ef90dfc76887814e10b6ed16aa8fe88d9 (diff) |
Print MSBuild command if also printing output
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs b/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs index 79ef46ebb5..967e3bcc19 100644 --- a/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs +++ b/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs @@ -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; |