From b9d2ecb4e066e60213d3c73b0bd3268ca761a81a Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 16 Dec 2016 16:16:13 -0800 Subject: [PATCH] Cleanup console output, removing unuseful logging --- makefile.shade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile.shade b/makefile.shade index b2b6932622..2e0e212d67 100644 --- a/makefile.shade +++ b/makefile.shade @@ -955,7 +955,7 @@ functions catch (Exception ex) { // usually due to comments - Console.Error.WriteLine("Failed to parse " + ngpvJson + " : " + ex.Message); + // Console.Error.WriteLine("Failed to parse " + ngpvJson + " : " + ex.Message); return; } @@ -1011,7 +1011,7 @@ functions { UseShellExecute = false, FileName = "dotnet", - Arguments = "msbuild \"" + projectFile + "\" /t:GenerateRestoreGraphFile \"/p:RestoreGraphOutputPath=" + dgJson + "\"" + Arguments = "msbuild \"" + projectFile + "\" /nologo /t:GenerateRestoreGraphFile \"/p:RestoreGraphOutputPath=" + dgJson + "\"" }; var p = Process.Start(psi); p.WaitForExit();