Remove unused OnExecute

This commit is contained in:
Brennan 2015-12-15 08:53:41 -08:00
parent e0d3d7e85d
commit cbc201ac26
1 changed files with 0 additions and 7 deletions

View File

@ -72,13 +72,6 @@ namespace Microsoft.Dnx.Watcher
app.HelpOption("-?|-h|--help");
// Show help information if no subcommand/option was specified
app.OnExecute(() =>
{
app.ShowHelp();
return 2;
});
var projectArg = app.Option(
"--project <PATH>",
"Path to the project.json file or the application folder. Defaults to the current folder if not provided. Will be passed to DNX.",