Merge branch 'master' into merges/release/2.1.3xx-to-master
This commit is contained in:
commit
a7bfaacf99
78 changed files with 3658 additions and 755 deletions
|
|
@ -167,12 +167,12 @@ namespace Microsoft.DotNet.Tools.Run
|
|||
{
|
||||
List<string> args = new List<string>()
|
||||
{
|
||||
"/nologo"
|
||||
"-nologo"
|
||||
};
|
||||
|
||||
if (!RestoreArgs.Any(a => a.StartsWith("/verbosity:")))
|
||||
if (!RestoreArgs.Any(a => a.StartsWith("-verbosity:")))
|
||||
{
|
||||
args.Add("/verbosity:quiet");
|
||||
args.Add("-verbosity:quiet");
|
||||
}
|
||||
|
||||
args.AddRange(RestoreArgs);
|
||||
|
|
|
|||
Reference in a new issue