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