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