1 implementation of ICertificateService
aspire (1)
Certificates\CertificateService.cs (1)
18internal sealed class CertificateService(IInteractionService interactionService, AspireCliTelemetry telemetry) : ICertificateService
6 references to ICertificateService
aspire (6)
Commands\NewCommand.cs (2)
21private readonly ICertificateService _certificateService; 32ICertificateService certificateService,
Commands\RunCommand.cs (2)
25private readonly ICertificateService _certificateService; 34ICertificateService certificateService,
Program.cs (1)
100builder.Services.AddSingleton<ICertificateService, CertificateService>();
Templating\DotNetTemplateFactory.cs (1)
16internal class DotNetTemplateFactory(IInteractionService interactionService, IDotNetCliRunner runner, ICertificateService certificateService, INuGetPackageCache nuGetPackageCache, INewCommandPrompter prompter) : ITemplateFactory