5 implementations of HelpDescription
System.CommandLine.StaticCompletions (5)
shells\BashShellProvider.cs (1)
16public string HelpDescription => Strings.BashShellProvider_HelpDescription;
shells\FishShellProvider.cs (1)
16public string HelpDescription => Strings.FishShellProvider_HelpDescription;
shells\NuShellShellProvider.cs (1)
14public string HelpDescription => Strings.NuShellShellProvider_HelpDescription;
shells\PowershellShellProvider.cs (1)
17public string HelpDescription => Strings.PowershellShellProvider_HelpDescription;
shells\ZshShellProvider.cs (1)
15public string HelpDescription => Strings.ZshShellProvider_HelpDescription;
1 reference to HelpDescription
System.CommandLine.StaticCompletions (1)
CompletionsCommandParser.cs (1)
33ShellNames.All.Select(shellName => new CompletionItem(shellName, documentation: ShellProviders[shellName].HelpDescription)));