5 implementations of GenerateCompletions
System.CommandLine.StaticCompletions (5)
shells\BashShellProvider.cs (1)
23
public string
GenerateCompletions
(Command command)
shells\FishShellProvider.cs (1)
27
public string
GenerateCompletions
(System.CommandLine.Command command) => _dynamicCompletionScript;
shells\NuShellShellProvider.cs (1)
48
public string
GenerateCompletions
(System.CommandLine.Command command) => _dynamicCompletionScript;
shells\PowershellShellProvider.cs (1)
24
public string
GenerateCompletions
(Command command)
shells\ZshShellProvider.cs (1)
20
public string
GenerateCompletions
(Command command)
3 references to GenerateCompletions
dotnet.Tests (1)
CompletionTests\DotnetCliSnapshotTests.cs (1)
18
var completions = provider.
GenerateCompletions
(Parser.RootCommand);
System.CommandLine.StaticCompletions (1)
CompletionsCommand.cs (1)
116
var script = shell.
GenerateCompletions
(args.RootCommandResult.Command);
System.CommandLine.StaticCompletions.Tests (1)
VerifyExtensions.cs (1)
34
var completions = provider.
GenerateCompletions
(command);