1 instantiation of InstantiateCommand
Microsoft.TemplateEngine.Cli (1)
Commands\BaseCommand.cs (1)
36
{ NewCreateCommandDefinition.Name, (hostBuilder, definition) => new
InstantiateCommand
(hostBuilder, (NewCreateCommandDefinition)definition) },
8 references to InstantiateCommand
Microsoft.TemplateEngine.Cli (8)
Commands\BaseCommand.cs (1)
129
var example = Example.For<
InstantiateCommand
>(args.ParseResult).WithArguments(usedCommandAlias);
Commands\create\InstantiateCommand.cs (2)
435
bool useInstantiateCommand = instantiateArgs.NewOrInstantiateCommand is
InstantiateCommand
;
445
? Example.For<
InstantiateCommand
>(instantiateArgs.ParseResult).WithArguments(possibleMatch)
Commands\create\InstantiateCommandArgs.cs (1)
27
public InstantiateCommandArgs(
InstantiateCommand
command, ParseResult parseResult)
Commands\NewCommand.cs (3)
38
foreach (CompletionItem completion in
InstantiateCommand
.GetTemplateCompletions(instantiateCommandArgs, templateGroups, environmentSettings, templatePackageManager, textCompletionContext))
45
foreach (CompletionItem completion in
InstantiateCommand
.GetTemplateNameCompletions(instantiateCommandArgs.ShortName, templateGroups, environmentSettings))
62
return
InstantiateCommand
.ExecuteAsync(args, environmentSettings, templatePackageManager, parseResult, cancellationToken);
Commands\NewCommand.Help.cs (1)
22
InstantiateCommand
.WriteHelp(context, instantiateCommandArgs, environmentSettings);