2 instantiations of NewAliasShowCommandDefinition
Microsoft.DotNet.Cli.Definitions (2)
Commands\New\NewAliasCommandDefinition.cs (1)
18
public readonly NewAliasShowCommandDefinition ShowCommand =
new
(isLegacy: false);
Commands\New\NewCommandDefinition.cs (1)
115
public readonly NewAliasShowCommandDefinition LegacyShowAliasCommand =
new
(isLegacy: true);
8 references to NewAliasShowCommandDefinition
Microsoft.DotNet.Cli.Definitions (2)
Commands\New\NewAliasCommandDefinition.cs (1)
18
public readonly
NewAliasShowCommandDefinition
ShowCommand = new(isLegacy: false);
Commands\New\NewCommandDefinition.cs (1)
115
public readonly
NewAliasShowCommandDefinition
LegacyShowAliasCommand = new(isLegacy: true);
Microsoft.TemplateEngine.Cli (6)
Commands\alias\AliasShowCommand.cs (2)
11
internal sealed class AliasShowCommand(Func<ParseResult, ITemplateEngineHost> hostBuilder,
NewAliasShowCommandDefinition
definition)
12
: BaseCommand<AliasShowCommandArgs,
NewAliasShowCommandDefinition
>(hostBuilder, definition)
Commands\BaseCommand.cs (4)
34
{
NewAliasShowCommandDefinition
.Name, (hostBuilder, definition) => new AliasShowCommand(hostBuilder, (
NewAliasShowCommandDefinition
)definition) },
35
{
NewAliasShowCommandDefinition
.LegacyName, (hostBuilder, definition) => new AliasShowCommand(hostBuilder, (
NewAliasShowCommandDefinition
)definition) },