Skip to content

Release 1.3.2

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 29 Feb 17:43

Support multiple referenced command!

[RootCommand(Subcommands = new[] { typeof(SubCommand) })]
class CommandA
{
}

[RootCommand(Subcommands = new[] { typeof(SubCommand) })]
class CommandB
{
}

[Command("sub")]
class SubCommand
{
}