1 implementation of IFactoryService
Microsoft.Extensions.DependencyInjection.AutoActivation.Tests (1)
Fakes\FactoryService.cs (1)
8
public class FactoryService :
IFactoryService
6 references to IFactoryService
Microsoft.Extensions.DependencyInjection.AutoActivation.Tests (6)
AcceptanceTest.cs (2)
69
.AddActivatedSingleton<
IFactoryService
, FactoryService>(sp =>
91
.AddActivatedSingleton<
IFactoryService
, FactoryService>())
AcceptanceTest.Keyed.cs (2)
50
.AddActivatedKeyedSingleton<
IFactoryService
, FactoryService>(serviceKey, (sp, sk) =>
73
.AddActivatedKeyedSingleton<
IFactoryService
, FactoryService>(serviceKey))
AutoActivationExtensionsKeyedTests.cs (1)
73
serviceCollection.AddActivatedKeyedSingleton<
IFactoryService
, FactoryService>(null);
AutoActivationExtensionsTests.cs (1)
79
serviceCollection.AddActivatedSingleton<
IFactoryService
, FactoryService>();