1 write to TypeOption
Microsoft.TemplateEngine.Cli (1)
Commands\create\TemplateCommand.cs (1)
88
TypeOption
= SharedOptionsFactory.CreateTypeOption();
9 references to TypeOption
Microsoft.TemplateEngine.Cli (9)
Commands\create\InstantiateCommand.Help.cs (2)
308
if (template.
TypeOption
!= null)
310
optionsToShow.Add(template.
TypeOption
);
Commands\create\TemplateCommand.cs (3)
89
TypeOption
.Description = SymbolStrings.TemplateCommand_Option_Type;
90
TypeOption
.FromAmongCaseInsensitive(new[] { templateType });
91
Options.Add(
TypeOption
);
Commands\create\TemplateCommandArgs.cs (2)
30
if (command.
TypeOption
!= null)
32
Type = parseResult.GetValueForOptionOrNull(command.
TypeOption
);
Commands\create\TemplateResult.cs (2)
45
IsTypeMatch = templateCommand.
TypeOption
== null || !parseResult.HasErrorFor(templateCommand.
TypeOption
, out _),