Move LightInjectExtensions to proper space

This commit is contained in:
Stephan
2018-08-30 09:30:49 +02:00
parent 6692f3e7b7
commit 557bea5f95
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
using System.Linq;
using LightInject;
namespace Umbraco.Core.Composing
namespace Umbraco.Core.Composing.LightInject
{
/// <summary>
/// Provides extensions to LightInject.
@@ -28,7 +28,7 @@ namespace Umbraco.Core.Composing
}
/// <summary>
/// Registers a servuice with an implementation as a singleton.
/// Registers a service with an implementation as a singleton.
/// </summary>
public static void RegisterSingleton<TService, TImplementation>(this IServiceRegistry container)
where TImplementation : TService
@@ -37,7 +37,7 @@ namespace Umbraco.Core.Composing
}
/// <summary>
/// Registers a servuice with an implementation as a singleton.
/// Registers a service with an implementation as a singleton.
/// </summary>
public static void RegisterSingleton(this IServiceRegistry container, Type serviceType, Type implementingType)
{
@@ -56,7 +56,7 @@ namespace Umbraco.Core.Composing
}
/// <summary>
/// Registers a servuice with a named implementation as a singleton.
/// Registers a service with a named implementation as a singleton.
/// </summary>
public static void RegisterSingleton(this IServiceRegistry container, Type serviceType, Type implementingType, string name)
{

View File

@@ -188,7 +188,7 @@
<Compile Include="Composing\IDiscoverable.cs" />
<Compile Include="Composing\LazyCollectionBuilderBase.cs" />
<Compile Include="Composing\Lifetime.cs" />
<Compile Include="Composing\LightInjectExtensions.cs" />
<Compile Include="Composing\LightInject\LightInjectExtensions.cs" />
<Compile Include="Composing\LightInject\LightInjectContainer.cs" />
<Compile Include="Composing\LightInject\MixedLightInjectScopeManagerProvider.cs" />
<Compile Include="Composing\OrderedCollectionBuilderBase.cs" />