We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While working on #1964 I've realized that we allow the users to add completions in fluent way, but at the same time we don't do it for the validators.
Proposed change:
- void AddValidator(Action<ArgumentResult> validate) + Argument<T> AddValidator(Action<ArgumentResult> validate) - void AddValidator(Action<OptionResult> validate) + Option<T> AddValidator(Action<OptionResult> validate)
cc @jonsequitur @jozkee
The text was updated successfully, but these errors were encountered:
make AddValidator fluent, fixes dotnet#1965
8884c10
make AddValidator fluent, fixes #1965 (#1966)
9266d5c
adamsitnik
Successfully merging a pull request may close this issue.
While working on #1964 I've realized that we allow the users to add completions in fluent way, but at the same time we don't do it for the validators.
Proposed change:
cc @jonsequitur @jozkee
The text was updated successfully, but these errors were encountered: