5 implementations of HelpDescription
System.CommandLine.StaticCompletions (5)
shells\BashShellProvider.cs (1)
18
public string
HelpDescription
=> Strings.BashShellProvider_HelpDescription;
shells\FishShellProvider.cs (1)
14
public string
HelpDescription
=> Strings.FishShellProvider_HelpDescription;
shells\NuShellShellProvider.cs (1)
14
public string
HelpDescription
=> Strings.NuShellShellProvider_HelpDescription;
shells\PowershellShellProvider.cs (1)
19
public string
HelpDescription
=> Strings.PowershellShellProvider_HelpDescription;
shells\ZshShellProvider.cs (1)
15
public string
HelpDescription
=> Strings.ZshShellProvider_HelpDescription;
1 reference to HelpDescription
System.CommandLine.StaticCompletions (1)
CompletionsCommand.cs (1)
101
return shellMap.Values.Select(shellProvider => new CompletionItem(shellProvider.ArgumentName, documentation: shellProvider.
HelpDescription
));