Changing the /m /v:m default parameters to msbuild to -m and -v:m to avoid confusing that with files on unix machines.

This commit is contained in:
Livar Cunha 2018-04-02 12:41:21 -07:00
parent 6b240926a3
commit 7c37c9a069
7 changed files with 9 additions and 9 deletions

View file

@ -11,7 +11,7 @@ namespace Microsoft.DotNet.Cli.MSBuild.Tests
public class GivenDotnetRestoreInvocation
{
private const string ExpectedPrefix =
"exec <msbuildpath> /m /v:m /nologo /t:Restore";
"exec <msbuildpath> -m -v:m /nologo /t:Restore";
[Theory]
[InlineData(new string[] { }, "")]