Name change

This commit is contained in:
Stephan
2019-01-14 08:53:04 +01:00
parent 09d28f720a
commit 561b359a72
3 changed files with 5 additions and 5 deletions

View File

@@ -4,11 +4,11 @@
/// Provides a base class for targeted service factories.
/// </summary>
/// <typeparam name="TService"></typeparam>
public abstract class TargetedServiceProvider<TService>
public abstract class TargetedServiceFactory<TService>
{
private readonly IFactory _factory;
protected TargetedServiceProvider(IFactory factory)
protected TargetedServiceFactory(IFactory factory)
{
_factory = factory;
}

View File

@@ -2,10 +2,10 @@
namespace Umbraco.Core.IO
{
public class SupportingFileSystems : TargetedServiceProvider<IFileSystem>
public class SupportingFileSystems : TargetedServiceFactory<IFileSystem>
{
public SupportingFileSystems(IFactory factory)
: base(factory)
{ }
}
}
}

View File

@@ -196,7 +196,7 @@
<Compile Include="Composing\LightInject\LightInjectContainer.cs" />
<Compile Include="Composing\LightInject\MixedLightInjectScopeManagerProvider.cs" />
<Compile Include="Composing\OrderedCollectionBuilderBase.cs" />
<Compile Include="Composing\TargetedServiceProvider.cs" />
<Compile Include="Composing\TargetedServiceFactory.cs" />
<Compile Include="Composing\TypeFinder.cs" />
<Compile Include="Composing\TypeHelper.cs" />
<Compile Include="Composing\TypeLoader.cs" />