You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parser should accept both --loglevel and --logLevel or allow users to configure this behavior e.g. ArgumentParser.Create<CliArguments>(programName = "test", matchCase = false)
Actual behavior
The parser fails when provided with any command line parameter which is not lowercase.
Known workarounds
No workarounds.
Related information
Operating system: Linux
Branch: master
.NET Runtime, CoreCLR or Mono Version: .NET 9
The text was updated successfully, but these errors were encountered:
Description
Argu does not accept camel case command line parameters and it doesn't seem to be possible to enable case insensitive matches when parsing.
Repro steps
Run the following code snippet:
Expected behavior
Parser should accept both
--loglevel
and--logLevel
or allow users to configure this behavior e.g.ArgumentParser.Create<CliArguments>(programName = "test", matchCase = false)
Actual behavior
The parser fails when provided with any command line parameter which is not lowercase.
Known workarounds
No workarounds.
Related information
The text was updated successfully, but these errors were encountered: