2 types derived from BaseListCommand
Microsoft.TemplateEngine.Cli (2)
Commands\list\LegacyListCommand.cs (1)
11internal class LegacyListCommand : BaseListCommand
Commands\list\ListCommand.cs (1)
10internal class ListCommand : BaseListCommand
10 references to BaseListCommand
Microsoft.TemplateEngine.Cli (6)
Commands\create\InstantiateCommand.cs (1)
520.WithArgument(BaseListCommand.NameArgument, instantiateArgs.ShortName));
Commands\list\ListCommandArgs.cs (3)
10internal ListCommandArgs(BaseListCommand command, ParseResult parseResult) : base(command, parseResult) 12string? nameCriteria = parseResult.GetValue(BaseListCommand.NameArgument); 31IgnoreConstraints = parseResult.GetValue(BaseListCommand.IgnoreConstraintsOption);
TemplateListCoordinator.cs (1)
112BaseListCommand.IgnoreConstraintsOption.Name)
TemplateResolution\TemplateMatchInfoExtensions.cs (1)
46IEnumerable<string> supportedFilters = BaseListCommand.SupportedFilters.OfType<TemplateFilterOptionDefinition>().Select(f => f.MatchInfoName);
Microsoft.TemplateEngine.Cli.UnitTests (4)
ParserTests\ListTests.cs (4)
84ListCommandArgs args = new((BaseListCommand)parseResult.CommandResult.Command, parseResult); 125ListCommandArgs args = new((BaseListCommand)parseResult.CommandResult.Command, parseResult); 198ListCommandArgs args = new((BaseListCommand)parseResult.CommandResult.Command, parseResult); 218ListCommandArgs args = new((BaseListCommand)parseResult.CommandResult.Command, parseResult);