update Microsoft.DotNet.Cli.CommandLineParser version for more selective option splitting
This commit is contained in:
parent
960b3808ee
commit
abfb877c5d
4 changed files with 10 additions and 2 deletions
|
@ -15,6 +15,7 @@ namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|||
[Theory]
|
||||
[InlineData(new string[] { }, "/t:Build")]
|
||||
[InlineData(new string[] { "-o", "foo" }, "/t:Build /p:OutputPath=foo")]
|
||||
[InlineData(new string[] { "-p:Verbosity=diag" }, "/t:Build -p:Verbosity=diag")]
|
||||
[InlineData(new string[] { "--output", "foo" }, "/t:Build /p:OutputPath=foo")]
|
||||
[InlineData(new string[] { "-o", "foo1 foo2" }, "/t:Build \"/p:OutputPath=foo1 foo2\"")]
|
||||
[InlineData(new string[] { "--no-incremental" }, "/t:Rebuild")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue