Got exception when the subcommand has same short command alias as parent command.
similar command structure
[CliCommand(Name = "bitbucket", Description = "Bitbucket related")]
public class BitbucketCommand
{
[CliCommand(Name = "build", Description = "Trigger pipeline build for component")]
public class BuildCommand
}
error message
System.Exception: CommandAlias "b" for "BuildCommand" conflicts with parent CommandAlias for "BitbucketCommand"
Since they're in different level, should be acceptable? If not, could we validate on build so that we could got error reported before publishing
Got exception when the subcommand has same short command alias as parent command.
similar command structure
error message
Since they're in different level, should be acceptable? If not, could we validate on build so that we could got error reported before publishing