Support multiple referenced command!
[RootCommand(Subcommands = new[] { typeof(SubCommand) })]
class CommandA
{
}
[RootCommand(Subcommands = new[] { typeof(SubCommand) })]
class CommandB
{
}
[Command("sub")]
class SubCommand
{
}
[RootCommand(Subcommands = new[] { typeof(SubCommand) })]
class CommandA
{
}
[RootCommand(Subcommands = new[] { typeof(SubCommand) })]
class CommandB
{
}
[Command("sub")]
class SubCommand
{
}