-
Notifications
You must be signed in to change notification settings - Fork 415
Closed
Labels
Milestone
Description
Is there a way to get the previous help format for options back, i.e. the new format lists the options but excludes the expected values?
private static Option<string> CreateSettingsFileOption() => // Path to the settings file new("--settingsfile") { Description = "Path to settings file", Required = true };Beta 4:
Options: --settingsfile <settingsfile> (REQUIRED) Path to settings fileBeta 5:
Options: --settingsfile (REQUIRED) Path to settings fileNote the help is not listing that the
settingsfilerequires an option and is not just a flag.