Treat /? the same as --help (#5285)

* Fixes issue 4539

* Support -?
This commit is contained in:
Justin Goshi 2017-01-12 23:24:12 -10:00 committed by Piotr Puszkiewicz
parent be9134f512
commit f972cf80a9
4 changed files with 13 additions and 2 deletions

View file

@ -56,6 +56,8 @@ Advanced Commands:
[Theory]
[InlineData("--help")]
[InlineData("-h")]
[InlineData("-?")]
[InlineData("/?")]
public void WhenHelpOptionIsPassedToDotnetItPrintsUsage(string helpArg)
{
var cmd = new DotnetCommand()