|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.CommandLine;
using Microsoft.TemplateEngine.Abstractions;
using Microsoft.TemplateEngine.Edge.Settings;
namespace Microsoft.TemplateEngine.Cli.Commands
{
internal class LegacyInstallCommand : BaseInstallCommand
{
public LegacyInstallCommand(NewCommand parentCommand, Func<ParseResult, ITemplateEngineHost> hostBuilder)
: base(parentCommand, hostBuilder, "--install")
{
Hidden = true;
Aliases.Add("-i");
parentCommand.AddNoLegacyUsageValidators(this, except: new Option[] { InteractiveOption, AddSourceOption });
}
internal override Option<bool> InteractiveOption => ParentCommand.InteractiveOption;
internal override Option<string[]> AddSourceOption => ParentCommand.AddSourceOption;
protected override Task<NewCommandStatus> ExecuteAsync(InstallCommandArgs args, IEngineEnvironmentSettings environmentSettings, TemplatePackageManager templatePackageManager, ParseResult parseResult, CancellationToken cancellationToken)
{
PrintDeprecationMessage<LegacyInstallCommand, InstallCommand>(args.ParseResult);
return base.ExecuteAsync(args, environmentSettings, templatePackageManager, parseResult, cancellationToken);
}
}
}
|