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