diff --git a/src/Umbraco.Core/Composing/LightInjectExtensions.cs b/src/Umbraco.Core/Composing/LightInject/LightInjectExtensions.cs similarity index 97% rename from src/Umbraco.Core/Composing/LightInjectExtensions.cs rename to src/Umbraco.Core/Composing/LightInject/LightInjectExtensions.cs index d552cf756e..d9651ef1a1 100644 --- a/src/Umbraco.Core/Composing/LightInjectExtensions.cs +++ b/src/Umbraco.Core/Composing/LightInject/LightInjectExtensions.cs @@ -2,7 +2,7 @@ using System.Linq; using LightInject; -namespace Umbraco.Core.Composing +namespace Umbraco.Core.Composing.LightInject { /// /// Provides extensions to LightInject. @@ -28,7 +28,7 @@ namespace Umbraco.Core.Composing } /// - /// Registers a servuice with an implementation as a singleton. + /// Registers a service with an implementation as a singleton. /// public static void RegisterSingleton(this IServiceRegistry container) where TImplementation : TService @@ -37,7 +37,7 @@ namespace Umbraco.Core.Composing } /// - /// Registers a servuice with an implementation as a singleton. + /// Registers a service with an implementation as a singleton. /// public static void RegisterSingleton(this IServiceRegistry container, Type serviceType, Type implementingType) { @@ -56,7 +56,7 @@ namespace Umbraco.Core.Composing } /// - /// Registers a servuice with a named implementation as a singleton. + /// Registers a service with a named implementation as a singleton. /// public static void RegisterSingleton(this IServiceRegistry container, Type serviceType, Type implementingType, string name) { diff --git a/src/Umbraco.Core/Umbraco.Core.csproj b/src/Umbraco.Core/Umbraco.Core.csproj index 01432b7e31..099664ecde 100644 --- a/src/Umbraco.Core/Umbraco.Core.csproj +++ b/src/Umbraco.Core/Umbraco.Core.csproj @@ -188,7 +188,7 @@ - +