From 561b359a721ef002e98c2beb48d374ad683736e1 Mon Sep 17 00:00:00 2001 From: Stephan Date: Mon, 14 Jan 2019 08:53:04 +0100 Subject: [PATCH] Name change --- .../{TargetedServiceProvider.cs => TargetedServiceFactory.cs} | 4 ++-- src/Umbraco.Core/IO/SupportingFileSystems.cs | 4 ++-- src/Umbraco.Core/Umbraco.Core.csproj | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename src/Umbraco.Core/Composing/{TargetedServiceProvider.cs => TargetedServiceFactory.cs} (76%) diff --git a/src/Umbraco.Core/Composing/TargetedServiceProvider.cs b/src/Umbraco.Core/Composing/TargetedServiceFactory.cs similarity index 76% rename from src/Umbraco.Core/Composing/TargetedServiceProvider.cs rename to src/Umbraco.Core/Composing/TargetedServiceFactory.cs index 3f88e1bc28..53022c0043 100644 --- a/src/Umbraco.Core/Composing/TargetedServiceProvider.cs +++ b/src/Umbraco.Core/Composing/TargetedServiceFactory.cs @@ -4,11 +4,11 @@ /// Provides a base class for targeted service factories. /// /// - public abstract class TargetedServiceProvider + public abstract class TargetedServiceFactory { private readonly IFactory _factory; - protected TargetedServiceProvider(IFactory factory) + protected TargetedServiceFactory(IFactory factory) { _factory = factory; } diff --git a/src/Umbraco.Core/IO/SupportingFileSystems.cs b/src/Umbraco.Core/IO/SupportingFileSystems.cs index c13ae203ee..43ac2ba85a 100644 --- a/src/Umbraco.Core/IO/SupportingFileSystems.cs +++ b/src/Umbraco.Core/IO/SupportingFileSystems.cs @@ -2,10 +2,10 @@ namespace Umbraco.Core.IO { - public class SupportingFileSystems : TargetedServiceProvider + public class SupportingFileSystems : TargetedServiceFactory { public SupportingFileSystems(IFactory factory) : base(factory) { } } -} \ No newline at end of file +} diff --git a/src/Umbraco.Core/Umbraco.Core.csproj b/src/Umbraco.Core/Umbraco.Core.csproj index a592fd0f0e..609befd233 100755 --- a/src/Umbraco.Core/Umbraco.Core.csproj +++ b/src/Umbraco.Core/Umbraco.Core.csproj @@ -196,7 +196,7 @@ - +