5 implementations of HelpDescription
System.CommandLine.StaticCompletions (5)
shells\BashShellProvider.cs (1)
16
public string
HelpDescription
=> Strings.BashShellProvider_HelpDescription;
shells\FishShellProvider.cs (1)
16
public string
HelpDescription
=> Strings.FishShellProvider_HelpDescription;
shells\NuShellShellProvider.cs (1)
14
public string
HelpDescription
=> Strings.NuShellShellProvider_HelpDescription;
shells\PowershellShellProvider.cs (1)
17
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)
CompletionsCommandParser.cs (1)
33
ShellNames.All.Select(shellName => new CompletionItem(shellName, documentation: ShellProviders[shellName].
HelpDescription
)));