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
Verified version: ConsoleAppFramework Version 5.3.3
Code:
var app = ConsoleAppFramework.ConsoleApp.Create(); app.Add<CliEntryCommands>(); app.Run(args); class CliEntryCommands { /// <summary> /// echo /// </summary> /// <param name="val">-v, value</param> public void Echo(string val) { Console.WriteLine($"msg:{val}"); } }
The following output is generated in the following cases
. \ConsoleAppFrameworkTest.exe echo -v a --help The following is the output of the following case Argument '--help' is not recognized.
It might not be a bug, but I wanted to report it. Thanks.
The text was updated successfully, but these errors were encountered:
Thanks for the report. To allow the argument name ‘help’, the default help display is not shown after the command is selected.
Sorry, something went wrong.
No branches or pull requests
Verified version: ConsoleAppFramework Version 5.3.3
Code:
The following output is generated in the following cases
It might not be a bug, but I wanted to report it.
Thanks.
The text was updated successfully, but these errors were encountered: