Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All commands are always optional when using hosting #2525

Open
altafard opened this issue Mar 7, 2025 · 0 comments
Open

All commands are always optional when using hosting #2525

altafard opened this issue Mar 7, 2025 · 0 comments

Comments

@altafard
Copy link

altafard commented Mar 7, 2025

In the example bellow I was expecting that running cli without specifying a subcommand would fail with the error "Required command was not provided." as it happens without using the host

var root = new Command("cli")
{
    Subcommands = { new Command("cmd") }
};

var configuration = new CommandLineConfiguration(root).UseHost(
   _ => Host.CreateDefaultBuilder(),
   cfg => cfg.UseInvocationLifetime());

await configuration.InvokeAsync(args);

However, it works fine and no errors pop up. It seems that UseHost calls HostingAction.SetHandlers extensions on the root command and it sets actions to all commands in the chain. As a result, this validation never sets the error.

/// <param name="completeValidation">Only the inner most command goes through complete validation.</param>
internal void Validate(bool completeValidation)
{
if (completeValidation)
{
if (Command.Action is null && Command.HasSubcommands)
{
SymbolResultTree.InsertFirstError(
new ParseError(LocalizationResources.RequiredCommandWasNotProvided(), this));
}

Was it made intentionally? As a workaround I can use Validators and check that there are tokens provided in the arguments list, but it would be nice to keep the same behaviour as it works without using a host.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant