Merge pull request #4438 from jeffkl/restore

Reduce MSBuild verbosity for restore
This commit is contained in:
Livar 2016-10-24 12:49:07 -07:00 committed by GitHub
commit f68670e13c

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())