-
The logging example does a great job showing how global options such as
while this does:
Is that intentional behavior, or a bug? The first example, with logLevel at the end, seems more natural to me and is how the dotnet CLI works as well (which appears to be one of your inspirations). Thanks for making this library! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
Much the same as #657 - you can create global options by subclassing from a common settings class. As to the order of commands/subcommands and options: Currently, all options and arguments need to be last. #193 addresses this issue. |
Beta Was this translation helpful? Give feedback.
Much the same as #657 - you can create global options by subclassing from a common settings class.
As to the order of commands/subcommands and options: Currently, all options and arguments need to be last. #193 addresses this issue.