15 instantiations of InstallCommandArgs
Microsoft.TemplateEngine.Cli (1)
Commands\install\BaseInstallCommand.cs (1)
52
return new
InstallCommandArgs
(this, parseResult);
Microsoft.TemplateEngine.Cli.UnitTests (14)
ParserTests\InstallTests.cs (13)
21
InstallCommandArgs args =
new
((InstallCommand)parseResult.CommandResult.Command, parseResult);
41
Assert.Throws<ArgumentException>(() => new
InstallCommandArgs
((InstallCommand)parseResult.CommandResult.Command, parseResult));
55
Assert.Throws<ArgumentException>(() => new
InstallCommandArgs
((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult));
66
InstallCommandArgs args =
new
((InstallCommand)parseResult.CommandResult.Command, parseResult);
83
InstallCommandArgs args =
new
((InstallCommand)parseResult.CommandResult.Command, parseResult);
90
args = new
InstallCommandArgs
((InstallCommand)parseResult.CommandResult.Command, parseResult);
104
InstallCommandArgs args =
new
((InstallCommand)parseResult.CommandResult.Command, parseResult);
111
args = new
InstallCommandArgs
((InstallCommand)parseResult.CommandResult.Command, parseResult);
125
InstallCommandArgs args =
new
((InstallCommand)parseResult.CommandResult.Command, parseResult);
142
InstallCommandArgs args =
new
((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
160
InstallCommandArgs args =
new
((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
176
InstallCommandArgs args =
new
((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
192
InstallCommandArgs args =
new
((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
ParserTests\MiscTests.cs (1)
110
InstallCommandArgs args =
new
((InstallCommand)parseResult.CommandResult.Command, parseResult);
17 references to InstallCommandArgs
Microsoft.TemplateEngine.Cli (7)
Commands\install\BaseInstallCommand.cs (3)
10
internal abstract class BaseInstallCommand : BaseCommand<
InstallCommandArgs
>
40
InstallCommandArgs
args,
50
protected override
InstallCommandArgs
ParseContext(ParseResult parseResult)
Commands\install\InstallCommand.cs (1)
21
InstallCommandArgs
args,
Commands\install\LegacyInstallCommand.cs (1)
25
protected override Task<NewCommandStatus> ExecuteAsync(
InstallCommandArgs
args, IEngineEnvironmentSettings environmentSettings, TemplatePackageManager templatePackageManager, ParseResult parseResult, CancellationToken cancellationToken)
TemplatePackageCoordinator.cs (2)
181
internal async Task<NewCommandStatus> EnterInstallFlowAsync(
InstallCommandArgs
args, CancellationToken cancellationToken)
608
private async Task<bool> ValidateInstallationRequestsAsync(
InstallCommandArgs
args, List<InstallRequest> installRequests, CancellationToken cancellationToken)
Microsoft.TemplateEngine.Cli.UnitTests (10)
ParserTests\InstallTests.cs (9)
21
InstallCommandArgs
args = new((InstallCommand)parseResult.CommandResult.Command, parseResult);
66
InstallCommandArgs
args = new((InstallCommand)parseResult.CommandResult.Command, parseResult);
83
InstallCommandArgs
args = new((InstallCommand)parseResult.CommandResult.Command, parseResult);
104
InstallCommandArgs
args = new((InstallCommand)parseResult.CommandResult.Command, parseResult);
125
InstallCommandArgs
args = new((InstallCommand)parseResult.CommandResult.Command, parseResult);
142
InstallCommandArgs
args = new((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
160
InstallCommandArgs
args = new((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
176
InstallCommandArgs
args = new((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
192
InstallCommandArgs
args = new((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult);
ParserTests\MiscTests.cs (1)
110
InstallCommandArgs
args = new((InstallCommand)parseResult.CommandResult.Command, parseResult);