fix: Show default value in `config list` help

pull/201/head
Robert Dailey 1 year ago
parent dc93b10e64
commit f7bfab065d

@ -20,7 +20,8 @@ public class ConfigListCommand : AsyncCommand<ConfigListCommand.CliSettings>
public class CliSettings : BaseCommandSettings
{
[CommandArgument(0, "[ListCategory]")]
[EnumDescription<ConfigListCategory>("The type of configuration information to list.")]
[EnumDescription<ConfigListCategory>(
"The type of configuration information to list. If not specified, defaults to 'local'.")]
public ConfigListCategory ListCategory { get; [UsedImplicitly] init; } = ConfigListCategory.Local;
}

Loading…
Cancel
Save