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
When i do myprogram.exe --help i get the following output
myprogram.exe --help
USAGE: DogCatapult.exe [--help] [--comment [<comment>]] [--status [<status>]] <id>´
but the annotation for id is:
[<MainCommand; ExactlyOnce; First>] Issue of id:string
The first is not represented in the help text but when trying to parse it is recognized.
DogCatapult.exe -c "Test" ABC-123 ERROR: argument '<id>' should precede all other arguments. USAGE: DogCatapult.exe [--help] [--comment [<comment>]] [--status [<status>]] <id>
The text was updated successfully, but these errors were encountered:
The MainCommand and First attributes are generally contradictory. It seems like this combination should be raising an error.
MainCommand
First
Sorry, something went wrong.
No branches or pull requests
Description
When i do
myprogram.exe --help
i get the following outputbut the annotation for id is:
The first is not represented in the help text but when trying to parse it is recognized.
The text was updated successfully, but these errors were encountered: