Reduce MSBuild verbosity for restore

Remove the MSBuild logo
Set verbosity to minimal
This commit is contained in:
Jeff Kluge 2016-10-18 09:10:26 -07:00
parent c62433a3e6
commit c98b6cc412

View file

@ -69,7 +69,9 @@ namespace Microsoft.DotNet.Tools.Restore3
{
var msbuildArgs = new List<string>()
{
"/t:Restore"
"/NoLogo",
"/t:Restore",
"/ConsoleLoggerParameters:Verbosity=Minimal"
};
if (sourceOption.HasValue())