Merge pull request #4438 from jeffkl/restore
Reduce MSBuild verbosity for restore
This commit is contained in:
commit
f68670e13c
1 changed files with 3 additions and 1 deletions
|
@ -69,7 +69,9 @@ namespace Microsoft.DotNet.Tools.Restore3
|
||||||
{
|
{
|
||||||
var msbuildArgs = new List<string>()
|
var msbuildArgs = new List<string>()
|
||||||
{
|
{
|
||||||
"/t:Restore"
|
"/NoLogo",
|
||||||
|
"/t:Restore",
|
||||||
|
"/ConsoleLoggerParameters:Verbosity=Minimal"
|
||||||
};
|
};
|
||||||
|
|
||||||
if (sourceOption.HasValue())
|
if (sourceOption.HasValue())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue