1 implementation of IConfigurationService
aspire (1)
Configuration\ConfigurationService.cs (1)
9
internal sealed class ConfigurationService(DirectoryInfo currentDirectory, FileInfo globalSettingsFile) :
IConfigurationService
12 references to IConfigurationService
aspire (12)
Commands\ConfigCommand.cs (8)
17
private readonly
IConfigurationService
_configurationService;
20
public ConfigCommand(IConfiguration configuration,
IConfigurationService
configurationService, IInteractionService interactionService)
92
private readonly
IConfigurationService
_configurationService;
95
public SetCommand(
IConfigurationService
configurationService, IInteractionService interactionService)
159
private readonly
IConfigurationService
_configurationService;
162
public ListCommand(
IConfigurationService
configurationService, IInteractionService interactionService)
190
private readonly
IConfigurationService
_configurationService;
193
public DeleteCommand(
IConfigurationService
configurationService, IInteractionService interactionService)
Program.cs (3)
123
private static
IConfigurationService
BuildConfigurationService(IServiceProvider serviceProvider)
154
var
configurationService = serviceProvider.GetRequiredService<
IConfigurationService
>();
Projects\ProjectLocator.cs (1)
19
internal sealed class ProjectLocator(ILogger<ProjectLocator> logger, IDotNetCliRunner runner, DirectoryInfo currentDirectory, IInteractionService interactionService,
IConfigurationService
configurationService, AspireCliTelemetry telemetry) : IProjectLocator