1 instantiation of CommonCommandServices
Aspire.Cli.Tests (1)
NuGet\NuGetPackagePrefetcherTests.cs (1)
541: base("test", "Test command", new CommonCommandServices(null!, null!, null!, null!, null!, null!, null!, null!))
86 references to CommonCommandServices
aspire (83)
Commands\AddCommand.cs (1)
55public AddCommand(IProjectLocator projectLocator, IntegrationPackageSearchService integrationPackageSearchService, IAddCommandPrompter prompter, IDotNetSdkInstaller sdkInstaller, ICliHostEnvironment hostEnvironment, IAppHostProjectFactory projectFactory, ProfilingTelemetry profilingTelemetry, CommonCommandServices services)
Commands\AgentCommand.cs (1)
19CommonCommandServices services)
Commands\AgentInitCommand.cs (1)
40CommonCommandServices services)
Commands\AgentMcpCommand.cs (1)
62CommonCommandServices services)
Commands\AgentTelemetryCommand.cs (1)
76public AgentTelemetryCommand(CommonCommandServices services)
Commands\ApiCommand.cs (1)
26CommonCommandServices services)
Commands\ApiGetCommand.cs (1)
37CommonCommandServices services)
Commands\ApiListCommand.cs (1)
39CommonCommandServices services)
Commands\ApiSearchCommand.cs (1)
49CommonCommandServices services)
Commands\BaseCommand.cs (2)
70protected BaseCommand(string name, string description, CommonCommandServices services) : base(name, description) 114private async Task<int> HandleCommandAsync(ParseResult parseResult, CancellationToken cancellationToken, CommonCommandServices services)
Commands\BaseConfigSubCommand.cs (1)
8internal abstract class BaseConfigSubCommand(string name, string description, IConfigurationService configurationService, CommonCommandServices services) : BaseCommand(name, description, services)
Commands\CacheCommand.cs (2)
17CommonCommandServices services) 27public ClearCommand(CommonCommandServices services)
Commands\CertificatesCleanCommand.cs (1)
19public CertificatesCleanCommand(ICertificateToolRunner certificateToolRunner, CommonCommandServices services)
Commands\CertificatesCommand.cs (1)
13CommonCommandServices services)
Commands\CertificatesTrustCommand.cs (1)
21CommonCommandServices services)
Commands\ConfigCommand.cs (6)
23public ConfigCommand(IConfiguration configuration, IConfigurationService configurationService, CommonCommandServices services) 69public GetCommand(IConfigurationService configurationService, CommonCommandServices services) 124public SetCommand(IConfigurationService configurationService, CommonCommandServices services) 206public ListCommand(IConfigurationService configurationService, CommonCommandServices services) 362public DeleteCommand(IConfigurationService configurationService, CommonCommandServices services) 439public InfoCommand(IConfigurationService configurationService, CommonCommandServices services)
Commands\DashboardCommand.cs (1)
17CommonCommandServices services)
Commands\DashboardRunCommand.cs (1)
73CommonCommandServices services)
Commands\DeployCommand.cs (1)
23CommonCommandServices services)
Commands\DescribeCommand.cs (1)
105CommonCommandServices services)
Commands\DestroyCommand.cs (1)
23CommonCommandServices services)
Commands\DoCommand.cs (1)
23CommonCommandServices services)
Commands\DocsCommand.cs (1)
20CommonCommandServices services)
Commands\DocsGetCommand.cs (1)
40CommonCommandServices services)
Commands\DocsListCommand.cs (1)
32CommonCommandServices services)
Commands\DocsSearchCommand.cs (1)
42CommonCommandServices services)
Commands\DoctorCommand.cs (1)
46CommonCommandServices services)
Commands\ExportCommand.cs (1)
56CommonCommandServices services)
Commands\ExtensionInternalCommand.cs (2)
15public ExtensionInternalCommand(IProjectLocator projectLocator, CommonCommandServices services) : base("extension", "Hidden command for extension integration", services) 30public GetAppHostCandidatesCommand(IProjectLocator projectLocator, CommonCommandServices services) : base("get-apphosts", "Get AppHosts in the specified directory", services)
Commands\InitCommand.cs (1)
78CommonCommandServices services)
Commands\IntegrationCommand.cs (1)
16CommonCommandServices services)
Commands\IntegrationSearchCommand.cs (3)
37CommonCommandServices services) 229CommonCommandServices services) 247CommonCommandServices services)
Commands\LogsCommand.cs (1)
121CommonCommandServices services)
Commands\LsCommand.cs (1)
47CommonCommandServices services,
Commands\McpCallCommand.cs (1)
41CommonCommandServices services)
Commands\McpCommand.cs (1)
21CommonCommandServices services)
Commands\McpInitCommand.cs (1)
29CommonCommandServices services)
Commands\McpStartCommand.cs (1)
19CommonCommandServices services)
Commands\McpToolsCommand.cs (1)
31CommonCommandServices services)
Commands\NewCommand.cs (1)
76CommonCommandServices services)
Commands\ParentCommand.cs (1)
13protected ParentCommand(string name, string description, CommonCommandServices services)
Commands\PipelineCommandBase.cs (1)
93protected PipelineCommandBase(string name, string description, IDotNetCliRunner runner, IProjectLocator projectLocator, IFeatures features, ICliHostEnvironment hostEnvironment, IAppHostProjectFactory projectFactory, IConfiguration configuration, ILogger logger, IAnsiConsole ansiConsole, CommonCommandServices services)
Commands\PsCommand.cs (1)
94CommonCommandServices services)
Commands\PublishCommand.cs (1)
42CommonCommandServices services)
Commands\RenderCommand.cs (3)
96CommonCommandServices services) 569_serviceProvider.GetRequiredService<CommonCommandServices>()); 817CommonCommandServices services)
Commands\ResourceCommand.cs (1)
82CommonCommandServices services)
Commands\RestoreCommand.cs (1)
46CommonCommandServices services)
Commands\RunCommand.cs (1)
137CommonCommandServices services)
Commands\Sdk\SdkCommand.cs (1)
15CommonCommandServices services)
Commands\Sdk\SdkDumpCommand.cs (1)
61CommonCommandServices services)
Commands\Sdk\SdkGenerateCommand.cs (1)
46CommonCommandServices services)
Commands\SecretCommand.cs (1)
23CommonCommandServices services)
Commands\SecretDeleteCommand.cs (1)
26CommonCommandServices services)
Commands\SecretGetCommand.cs (1)
27CommonCommandServices services)
Commands\SecretListCommand.cs (1)
29CommonCommandServices services)
Commands\SecretPathCommand.cs (1)
20CommonCommandServices services)
Commands\SecretSetCommand.cs (1)
30CommonCommandServices services)
Commands\SetupCommand.cs (1)
31CommonCommandServices services)
Commands\StartCommand.cs (1)
34CommonCommandServices services)
Commands\StopCommand.cs (1)
64CommonCommandServices services)
Commands\TelemetryCommand.cs (1)
19CommonCommandServices services)
Commands\TelemetryLogsCommand.cs (1)
56CommonCommandServices services)
Commands\TelemetrySpansCommand.cs (1)
48CommonCommandServices services)
Commands\TelemetryTracesCommand.cs (1)
48CommonCommandServices services)
Commands\TemplateCommand.cs (1)
15public TemplateCommand(ITemplate template, Func<ParseResult, CancellationToken, Task<CommandResult>> executeCallback, CommonCommandServices services)
Commands\TerminalAttachCommand.cs (1)
62CommonCommandServices services)
Commands\TerminalCommand.cs (1)
19CommonCommandServices services)
Commands\TerminalPsCommand.cs (1)
59CommonCommandServices services)
Commands\UpdateCommand.cs (1)
76CommonCommandServices services)
Commands\WaitCommand.cs (1)
44CommonCommandServices services,
Program.cs (1)
605builder.Services.AddSingleton<CommonCommandServices>();
Aspire.Cli.Tests (3)
Commands\BaseCommandTests.cs (2)
157provider.GetRequiredService<CommonCommandServices>(), 731CommonCommandServices services,
Utils\CliTestHelper.cs (1)
262services.AddSingleton<CommonCommandServices>();