Localize VerbAttribute by moh-hassan · Pull Request #473 · commandlineparser/commandline
@moh-hassan
I pulled down the package and re-tested that I can use resx to localize the Options help text and tested to localizing the Verb help text, both of these were successful.
I also verified that instead of using the provided example in the previous PR
[Option("lastname", HelpText = "LastName", ResourceType = typeof(EmployeeResx))]
You can use this as well
[Option("lastname", HelpText = nameof(EmployeeResx.LastName), ResourceType = typeof(EmployeeResx))]