Cleanup console output, removing unuseful logging
This commit is contained in:
parent
6ca8127bd6
commit
b9d2ecb4e0
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue