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)
129var example = Example.For<InstantiateCommand>(args.ParseResult).WithArguments(usedCommandAlias);
Commands\create\InstantiateCommand.cs (2)
435bool useInstantiateCommand = instantiateArgs.NewOrInstantiateCommand is InstantiateCommand; 445? Example.For<InstantiateCommand>(instantiateArgs.ParseResult).WithArguments(possibleMatch)
Commands\create\InstantiateCommandArgs.cs (1)
27public InstantiateCommandArgs(InstantiateCommand command, ParseResult parseResult)
Commands\NewCommand.cs (3)
38foreach (CompletionItem completion in InstantiateCommand.GetTemplateCompletions(instantiateCommandArgs, templateGroups, environmentSettings, templatePackageManager, textCompletionContext)) 45foreach (CompletionItem completion in InstantiateCommand.GetTemplateNameCompletions(instantiateCommandArgs.ShortName, templateGroups, environmentSettings)) 62return InstantiateCommand.ExecuteAsync(args, environmentSettings, templatePackageManager, parseResult, cancellationToken);
Commands\NewCommand.Help.cs (1)
22InstantiateCommand.WriteHelp(context, instantiateCommandArgs, environmentSettings);