Cleanup console output, removing unuseful logging

This commit is contained in:
Nate McMaster 2016-12-16 16:16:13 -08:00
parent 6ca8127bd6
commit b9d2ecb4e0
1 changed files with 2 additions and 2 deletions

View File

@ -955,7 +955,7 @@ functions
catch (Exception ex) catch (Exception ex)
{ {
// usually due to comments // usually due to comments
Console.Error.WriteLine("Failed to parse " + ngpvJson + " : " + ex.Message); // Console.Error.WriteLine("Failed to parse " + ngpvJson + " : " + ex.Message);
return; return;
} }
@ -1011,7 +1011,7 @@ functions
{ {
UseShellExecute = false, UseShellExecute = false,
FileName = "dotnet", FileName = "dotnet",
Arguments = "msbuild \"" + projectFile + "\" /t:GenerateRestoreGraphFile \"/p:RestoreGraphOutputPath=" + dgJson + "\"" Arguments = "msbuild \"" + projectFile + "\" /nologo /t:GenerateRestoreGraphFile \"/p:RestoreGraphOutputPath=" + dgJson + "\""
}; };
var p = Process.Start(psi); var p = Process.Start(psi);
p.WaitForExit(); p.WaitForExit();