Removes LightInject as Source and adds it as DLL dependencies, updates to latest Light Inject.

This commit is contained in:
Shannon
2015-12-20 17:09:46 +01:00
parent 0fd9a074d8
commit 0bcf38b267
49 changed files with 167 additions and 7749 deletions

View File

@@ -1,7 +1,7 @@
using System;
using System.Linq.Expressions;
using System.ComponentModel;
using Umbraco.Core.LightInject;
using LightInject;
using Umbraco.Core.ObjectResolution;
namespace Umbraco.Core.Dictionary
@@ -31,7 +31,7 @@ namespace Umbraco.Core.Dictionary
/// </summary>
/// <param name="container"></param>
/// <param name="implementationType"></param>
internal CultureDictionaryFactoryResolver(IServiceContainer container, Expression<Func<IServiceFactory, ICultureDictionaryFactory>> implementationType)
internal CultureDictionaryFactoryResolver(IServiceContainer container, Func<IServiceFactory, ICultureDictionaryFactory> implementationType)
: base(container, implementationType)
{
}