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