From c98b6cc412af6dbfc82015729c32125dbbdb3bb5 Mon Sep 17 00:00:00 2001 From: Jeff Kluge Date: Tue, 18 Oct 2016 09:10:26 -0700 Subject: [PATCH] Reduce MSBuild verbosity for restore Remove the MSBuild logo Set verbosity to minimal --- src/dotnet/commands/dotnet-restore3/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/dotnet/commands/dotnet-restore3/Program.cs b/src/dotnet/commands/dotnet-restore3/Program.cs index 649066801..7b670c70f 100644 --- a/src/dotnet/commands/dotnet-restore3/Program.cs +++ b/src/dotnet/commands/dotnet-restore3/Program.cs @@ -69,7 +69,9 @@ namespace Microsoft.DotNet.Tools.Restore3 { var msbuildArgs = new List() { - "/t:Restore" + "/NoLogo", + "/t:Restore", + "/ConsoleLoggerParameters:Verbosity=Minimal" }; if (sourceOption.HasValue())