command-line
command-line copied to clipboard
Completion support
Is System.CommandLine's completion support also exposed by this library? Specifically 2 AIs:
- Support
.CommandLineBuilder UseSuggestDirective(description) for registering tool withdotnet-suggest.. - Generating list of completions at runtime, as described here https://learn.microsoft.com/en-us/dotnet/standard/commandline/tab-completion#get-tab-completion-values-at-run-time
[suggest] directive is enabled by default and can be disabled with CliSettings.EnableSuggestDirective.
dotnet [suggest] buil
build
build-server
msbuild
For completions, we need to add property to CliArgument and CliOption attributes. I will let you know.