-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
PriorityThis issue is a priority and should be worked on sooner rather than laterThis issue is a priority and should be worked on sooner rather than laterbugSomething isn't workingSomething isn't working
Description
RootCommand fails to execute.
In my case where I have three commands, 1 is a RootHandler using the [RootHandler] attribute; the rest are typical commands using [Handler("commandName")]. The RootHandler has two string arguments.
This launchsettings.json should result in calling the root command.
// launchsettings.json
{
"profiles": {
"ProfileName": {
"commandName": "Project",
"commandLineArgs": "arg1 arg2"
}
}
}However I get an error instead.
Error Message:
Required command was not provided.
Description:
<This prints the description for the root command, leading me to believe that it's at least attempting the root command>
Then it lists the commands...
Commands:
command2
command3
However it leaves out the root command from the list.
Metadata
Metadata
Assignees
Labels
PriorityThis issue is a priority and should be worked on sooner rather than laterThis issue is a priority and should be worked on sooner rather than laterbugSomething isn't workingSomething isn't working