5 implementations of ArgumentName
System.CommandLine.StaticCompletions (5)
shells\BashShellProvider.cs (1)
12
public string
ArgumentName
=> ShellNames.Bash;
shells\FishShellProvider.cs (1)
12
public string
ArgumentName
=> ShellNames.Fish;
shells\NuShellShellProvider.cs (1)
10
public string
ArgumentName
=> ShellNames.Nushell;
shells\PowershellShellProvider.cs (1)
13
public string
ArgumentName
=> ShellNames.PowerShell;
shells\ZshShellProvider.cs (1)
11
public string
ArgumentName
=> ShellNames.Zsh;
2 references to ArgumentName
System.CommandLine.StaticCompletions (2)
CompletionsCommandParser.cs (2)
25
Debug.Assert(providers.Select(provider => provider.
ArgumentName
).SequenceEqual(ShellNames.All));
27
ShellProviders = providers.ToDictionary(s => s.
ArgumentName
, StringComparer.OrdinalIgnoreCase);