5 implementations of IConfigurationService
aspire (1)
Configuration\ConfigurationService.cs (1)
11
internal sealed class ConfigurationService(IConfiguration configuration, CliExecutionContext executionContext, FileInfo globalSettingsFile, ILogger<ConfigurationService> logger) :
IConfigurationService
Aspire.Cli.Tests (4)
Commands\ConfigCommandTests.cs (1)
656
public class TestConfigurationService :
IConfigurationService
Projects\ProjectLocatorTests.cs (1)
617
private sealed class TestConfigurationService(CliExecutionContext executionContext) :
IConfigurationService
Templating\DotNetTemplateFactoryTests.cs (1)
396
private sealed class FakeConfigurationService :
IConfigurationService
TestServices\TestConfigurationService.cs (1)
11
public sealed class TestConfigurationService :
IConfigurationService
35 references to IConfigurationService
aspire (28)
Commands\BaseConfigSubCommand.cs (2)
11
internal abstract class BaseConfigSubCommand(string name, string description, IFeatures features, ICliUpdateNotifier updateNotifier,
IConfigurationService
configurationService, CliExecutionContext executionContext, IInteractionService interactionService, AspireCliTelemetry telemetry) : BaseCommand(name, description, features, updateNotifier, executionContext, interactionService, telemetry)
13
protected
IConfigurationService
ConfigurationService { get; } = configurationService;
Commands\ConfigCommand.cs (6)
26
public ConfigCommand(IConfiguration configuration,
IConfigurationService
configurationService, IInteractionService interactionService, IFeatures features, ICliUpdateNotifier updateNotifier, CliExecutionContext executionContext, AspireCliTelemetry telemetry)
76
public GetCommand(
IConfigurationService
configurationService, IInteractionService interactionService, IFeatures features, ICliUpdateNotifier updateNotifier, CliExecutionContext executionContext, AspireCliTelemetry telemetry)
134
public SetCommand(
IConfigurationService
configurationService, IInteractionService interactionService, IFeatures features, ICliUpdateNotifier updateNotifier, CliExecutionContext executionContext, AspireCliTelemetry telemetry)
208
public ListCommand(
IConfigurationService
configurationService, IInteractionService interactionService, IFeatures features, ICliUpdateNotifier updateNotifier, CliExecutionContext executionContext, AspireCliTelemetry telemetry)
355
public DeleteCommand(
IConfigurationService
configurationService, IInteractionService interactionService, IFeatures features, ICliUpdateNotifier updateNotifier, CliExecutionContext executionContext, AspireCliTelemetry telemetry)
435
public InfoCommand(
IConfigurationService
configurationService, IInteractionService interactionService, IFeatures features, ICliUpdateNotifier updateNotifier, CliExecutionContext executionContext, AspireCliTelemetry telemetry)
Commands\InitCommand.cs (2)
38
private readonly
IConfigurationService
_configurationService;
82
IConfigurationService
configurationService,
Commands\NewCommand.cs (2)
29
private readonly
IConfigurationService
_configurationService;
75
IConfigurationService
configurationService,
Commands\UpdateCommand.cs (2)
32
private readonly
IConfigurationService
_configurationService;
52
IConfigurationService
configurationService,
Program.cs (1)
556
private static
IConfigurationService
BuildConfigurationService(IServiceProvider serviceProvider)
Projects\AppHostServerProject.cs (1)
31
IConfigurationService
configurationService,
Projects\DotNetBasedAppHostServerProject.cs (2)
45
private readonly
IConfigurationService
_configurationService;
54
IConfigurationService
configurationService,
Projects\GuestAppHostProject.cs (3)
40
private readonly
IConfigurationService
_configurationService;
61
IConfigurationService
configurationService,
170
/// by using the already-resolved path from <see cref="
IConfigurationService
"/>.
Projects\LanguageService.cs (2)
16
private readonly
IConfigurationService
_configurationService;
22
IConfigurationService
configurationService,
Projects\PrebuiltAppHostServer.cs (2)
34
private readonly
IConfigurationService
_configurationService;
61
IConfigurationService
configurationService,
Projects\ProjectLocator.cs (1)
35
IConfigurationService
configurationService,
Templating\DotNetTemplateFactory.cs (1)
33
IConfigurationService
configurationService,
Templating\TemplateNuGetConfigService.cs (1)
17
IConfigurationService
configurationService)
Aspire.Cli.Tests (7)
Projects\ProjectLocatorTests.cs (1)
1025
IConfigurationService
? configurationService = null,
Utils\CliTestHelper.cs (6)
321
public Func<IServiceProvider,
IConfigurationService
> ConfigurationServiceFactory { get; set; }
323
public
IConfigurationService
CreateDefaultConfigurationServiceFactory(IServiceProvider serviceProvider)
347
var
configurationService = serviceProvider.GetRequiredService<
IConfigurationService
>();
477
var
configurationService = serviceProvider.GetRequiredService<
IConfigurationService
>();