1 implementation of ICertificateService
aspire (1)
Certificates\CertificateService.cs (1)
15internal sealed class CertificateService(IInteractionService interactionService) : ICertificateService
6 references to ICertificateService
aspire (6)
Commands\NewCommand.cs (2)
19private readonly ICertificateService _certificateService; 24public NewCommand(IDotNetCliRunner runner, INuGetPackageCache nuGetPackageCache, INewCommandPrompter prompter, IInteractionService interactionService, ICertificateService certificateService, ITemplateProvider templateProvider)
Commands\RunCommand.cs (2)
23private readonly ICertificateService _certificateService; 27public RunCommand(IDotNetCliRunner runner, IInteractionService interactionService, ICertificateService certificateService, IProjectLocator projectLocator, IAnsiConsole ansiConsole)
Program.cs (1)
125builder.Services.AddSingleton<ICertificateService, CertificateService>();
Templating\DotNetTemplateFactory.cs (1)
14internal class DotNetTemplateFactory(IInteractionService interactionService, IDotNetCliRunner runner, ICertificateService certificateService, INuGetPackageCache nuGetPackageCache, INewCommandPrompter prompter) : ITemplateFactory