Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public class GivenDotnetBuildInvocation : IClassFixture<NullCurrentSessionIdFixt
[InlineData(new string[] { "--configuration", "config" }, new string[] { "--property:Configuration=config" })]
[InlineData(new string[] { "--version-suffix", "mysuffix" }, new string[] { "--property:VersionSuffix=mysuffix" })]
[InlineData(new string[] { "--no-dependencies" }, new string[] { "--property:BuildProjectReferences=false" })]
[InlineData(new string[] { "--nologo" }, new string[] { "-nologo" })]
[InlineData(new string[] { "--no-logo" }, new string[] { "-nologo" })]
[InlineData(new string[] { "-v", "diag" }, new string[] { "--verbosity:diag" })]
[InlineData(new string[] { "--verbosity", "diag" }, new string[] { "--verbosity:diag" })]
[InlineData(new string[] { "--no-incremental", "-o", "myoutput", "-r", "myruntime", "-v", "diag", "/ArbitrarySwitchForMSBuild" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2309,4 +2309,4 @@ _testhost_completions_script() {



complete -F _testhost testhost
complete -F _testhost testhost
Loading