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
{{ message }}
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.
Following code throws an error of "Required argument missing for option: --include" with parse arguments "--include -", seems it doesn't recognize "-" as parameter value. I understand "-" is used as parameter prefix. Could you help to take a look whether there's any solution to let it recognize "-"?
Option[] SampleOptions() => new Option[] {Option("--include",
"", // help here
ExactlyOneArgument().With(name: "Pattern"))};
Parser Instance = new Parser(
options: SampleOptions());
ParseResult result = Instance.Parse(args);
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Following code throws an error of "Required argument missing for option: --include" with parse arguments "--include -", seems it doesn't recognize "-" as parameter value. I understand "-" is used as parameter prefix. Could you help to take a look whether there's any solution to let it recognize "-"?
The text was updated successfully, but these errors were encountered: