Replacing all implicit msbuild parameters from using a forward slash to using a dash.
This commit is contained in:
parent
7c37c9a069
commit
10289504a8
33 changed files with 179 additions and 179 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