Rename DI to Composing

This commit is contained in:
Stephan
2017-05-30 15:46:25 +02:00
parent b251d23a57
commit 81234cd702
229 changed files with 265 additions and 265 deletions
@@ -12,24 +12,24 @@ namespace Umbraco.Core
{
private ApplicationContext()
{
DatabaseContext = new DatabaseContext(DI.Current.Container.GetInstance<IUmbracoDatabaseFactory>());
DatabaseContext = new DatabaseContext(Composing.Current.Container.GetInstance<IUmbracoDatabaseFactory>());
}
public static ApplicationContext Current { get; } = new ApplicationContext();
public CacheHelper ApplicationCache => DI.Current.ApplicationCache;
public CacheHelper ApplicationCache => Composing.Current.ApplicationCache;
public ProfilingLogger ProfilingLogger => DI.Current.ProfilingLogger;
public ProfilingLogger ProfilingLogger => Composing.Current.ProfilingLogger;
public bool IsReady { get; } = true; // because... not accessible before we are ready
public bool IsConfigured => DI.Current.RuntimeState.Level == RuntimeLevel.Run;
public bool IsConfigured => Composing.Current.RuntimeState.Level == RuntimeLevel.Run;
public bool IsUpgrading => DI.Current.RuntimeState.Level == RuntimeLevel.Upgrade;
public bool IsUpgrading => Composing.Current.RuntimeState.Level == RuntimeLevel.Upgrade;
public DatabaseContext DatabaseContext { get; }
public ServiceContext Services => DI.Current.Services;
public ServiceContext Services => Composing.Current.Services;
public void Dispose()
{ }
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using LightInject;
// ReSharper disable once CheckNamespace
@@ -1,5 +1,5 @@
using Umbraco.Core.DI;
using CoreCurrent = Umbraco.Core.DI.Current;
using Umbraco.Core.Composing;
using CoreCurrent = Umbraco.Core.Composing.Current;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.Dictionary
@@ -1,5 +1,5 @@
using System;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.Logging
@@ -1,5 +1,5 @@
using System;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.Logging
@@ -1,5 +1,5 @@
using Umbraco.Core.DI;
using CoreCurrent = Umbraco.Core.DI.Current;
using Umbraco.Core.Composing;
using CoreCurrent = Umbraco.Core.Composing.Current;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.Models.PublishedContent
@@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.ObjectResolution
@@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.ObjectResolution
@@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.ObjectResolution
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using LightInject;
// ReSharper disable once CheckNamespace
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using LightInject;
using LightInject;
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using LightInject;
// ReSharper disable once CheckNamespace
@@ -1,5 +1,5 @@
using Umbraco.Core.DI;
using CoreCurrent = Umbraco.Core.DI.Current;
using Umbraco.Core.Composing;
using CoreCurrent = Umbraco.Core.Composing.Current;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.Strings
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using LightInject;
// ReSharper disable once CheckNamespace
@@ -1,5 +1,5 @@
using Umbraco.Core.DI;
using CoreCurrent = Umbraco.Core.DI.Current;
using Umbraco.Core.Composing;
using CoreCurrent = Umbraco.Core.Composing.Current;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.Sync
@@ -1,5 +1,5 @@
using Umbraco.Core.DI;
using CoreCurrent = Umbraco.Core.DI.Current;
using Umbraco.Core.Composing;
using CoreCurrent = Umbraco.Core.Composing.Current;
// ReSharper disable once CheckNamespace
namespace Umbraco.Core.Sync
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using LightInject;
// ReSharper disable once CheckNamespace
@@ -2,7 +2,7 @@
using Umbraco.Core.Media;
using Umbraco.Core.ObjectResolution;
using Umbraco.Web.Media.ThumbnailProviders;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using WebCurrent = Umbraco.Web.Current;
using LightInject;
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using WebCurrent = Umbraco.Web.Current;
using LightInject;
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using WebCurrent = Umbraco.Web.Current;
using LightInject;
@@ -1,6 +1,6 @@
using System;
using Umbraco.Core.DI;
using CoreCurrent = Umbraco.Core.DI.Current;
using Umbraco.Core.Composing;
using CoreCurrent = Umbraco.Core.Composing.Current;
using WebCurrent = Umbraco.Web.Current;
// ReSharper disable once CheckNamespace
@@ -1,5 +1,5 @@
using Umbraco.Core.DI;
using CoreCurrent = Umbraco.Core.DI.Current;
using Umbraco.Core.Composing;
using CoreCurrent = Umbraco.Core.Composing.Current;
using WebCurrent = Umbraco.Web.Current;
// ReSharper disable once CheckNamespace
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Umbraco.Core.ObjectResolution;
using CoreCurrent = Umbraco.Core.DI.Current;
using CoreCurrent = Umbraco.Core.Composing.Current;
using WebCurrent = Umbraco.Web.Current;
using LightInject;
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Cache
{
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Cache
{
@@ -3,7 +3,7 @@ using System.Runtime.CompilerServices;
using LightInject;
using Umbraco.Core.Cache;
using Umbraco.Core.Dictionary;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Core.Persistence.Mappers;
using Umbraco.Core.Persistence.Migrations;
@@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Provides a base class for builder collections.
@@ -4,7 +4,7 @@ using System.Linq;
using System.Linq.Expressions;
using LightInject;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Provides a base class for collection builders.
@@ -2,7 +2,7 @@ using LightInject;
using Umbraco.Core.Configuration;
using Umbraco.Core.Configuration.UmbracoSettings;
namespace Umbraco.Core.DI.CompositionRoots
namespace Umbraco.Core.Composing.CompositionRoots
{
/// <summary>
/// Sets up IoC container for Umbraco configuration classes
@@ -1,7 +1,7 @@
using LightInject;
using Umbraco.Core.Models.Identity;
namespace Umbraco.Core.DI.CompositionRoots
namespace Umbraco.Core.Composing.CompositionRoots
{
public sealed class CoreModelMappersCompositionRoot : ICompositionRoot
{
@@ -5,7 +5,7 @@ using Umbraco.Core.Persistence;
using Umbraco.Core.Persistence.Repositories;
using Umbraco.Core.Persistence.UnitOfWork;
namespace Umbraco.Core.DI.CompositionRoots
namespace Umbraco.Core.Composing.CompositionRoots
{
/// <summary>
/// Sets the IoC container for the umbraco data layer/repositories/sql/database/etc...
@@ -8,7 +8,7 @@ using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Services;
namespace Umbraco.Core.DI.CompositionRoots
namespace Umbraco.Core.Composing.CompositionRoots
{
public sealed class ServicesCompositionRoot : ICompositionRoot
{
@@ -15,7 +15,7 @@ using Umbraco.Core.Strings;
using Umbraco.Core.Sync;
using Umbraco.Core._Legacy.PackageActions;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Provides a static service locator for most singletons.
@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Represents a builder collection, ie an immutable enumeration of items.
@@ -1,4 +1,4 @@
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Represents a collection builder.
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using LightInject;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Implements a lazy collection builder.
@@ -5,7 +5,7 @@ using System.Reflection;
using LightInject;
using Umbraco.Core.Exceptions;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Provides extensions to LightInject.
@@ -1,7 +1,7 @@
using LightInject;
using LightInject.Web;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
// by default, the container's scope manager provider is PerThreadScopeManagerProvider,
// and then container.EnablePerWebRequestScope() replaces it with PerWebRequestScopeManagerProvider,
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using LightInject;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Implements an ordered collection builder.
@@ -1,6 +1,6 @@
using System;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Specifies the weight of pretty much anything.
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using LightInject;
namespace Umbraco.Core.DI
namespace Umbraco.Core.Composing
{
/// <summary>
/// Implements a weighted collection builder.
@@ -10,7 +10,7 @@ using System.Web.Security;
using System.Xml;
using System.Xml.Linq;
using System.Xml.XPath;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Security;
@@ -5,7 +5,7 @@ using Umbraco.Core.Cache;
using Umbraco.Core.Configuration.Dashboard;
using Umbraco.Core.Configuration.Grid;
using Umbraco.Core.Configuration.UmbracoSettings;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
namespace Umbraco.Core.Configuration
+1 -1
View File
@@ -8,7 +8,7 @@ using Semver;
using Umbraco.Core.Cache;
using Umbraco.Core.Components;
using Umbraco.Core.Configuration;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Exceptions;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
+2 -2
View File
@@ -8,8 +8,8 @@ using Umbraco.Core.Cache;
using Umbraco.Core.Components;
using Umbraco.Core.Configuration;
using Umbraco.Core.Configuration.UmbracoSettings;
using Umbraco.Core.DI;
using Umbraco.Core.DI.CompositionRoots;
using Umbraco.Core.Composing;
using Umbraco.Core.Composing.CompositionRoots;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Manifest;
@@ -1,4 +1,4 @@
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
namespace Umbraco.Core.Events
+1 -1
View File
@@ -39,7 +39,7 @@ namespace Umbraco.Core.IO
// DI wants a public ctor
// but IScopeProviderInternal is not public
public FileSystems(/*IScopeProviderInternal scopeProvider,*/ ILogger logger)
: this(DI.Current.ScopeProvider as IScopeProviderInternal, logger)
: this(Composing.Current.ScopeProvider as IScopeProviderInternal, logger)
{ }
internal FileSystems(IScopeProviderInternal scopeProvider, ILogger logger)
+1 -1
View File
@@ -11,7 +11,7 @@ using System.Threading.Tasks;
using LightInject;
using Umbraco.Core.Configuration;
using Umbraco.Core.Configuration.UmbracoSettings;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Exceptions;
using Umbraco.Core.Logging;
using Umbraco.Core.Media;
+1 -1
View File
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Exceptions;
using Umbraco.Core.Logging;
@@ -1,7 +1,7 @@
using System;
using System.Runtime.CompilerServices;
using ImageProcessor.Common.Exceptions;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Logging
{
@@ -1,6 +1,6 @@
using System;
using Microsoft.Owin.Logging;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Logging
{
@@ -1,5 +1,5 @@
using System.Collections.Generic;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Macros
{
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Macros
{
+1 -1
View File
@@ -7,7 +7,7 @@ using System.Web;
using System.Xml.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
using Umbraco.Core.Models.EntityBase;
using Umbraco.Core.Models.Membership;
+1 -1
View File
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
namespace Umbraco.Core.Models
@@ -1,6 +1,6 @@
using System;
using System.Web.Security;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Security;
using Umbraco.Core.Services;
@@ -2,7 +2,7 @@
using System.Xml;
using System.Xml.Linq;
using Umbraco.Core.Configuration;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.PropertyEditors;
using Umbraco.Core.Services;
@@ -1,5 +1,5 @@
using System;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Models.PublishedContent
{
@@ -2,7 +2,7 @@
using System.Linq;
using System.Xml.Linq;
using System.Xml.XPath;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Core.Models.PublishedContent
@@ -5,7 +5,7 @@ using System.Linq;
using System.Reflection;
using System.Security;
using System.Security.Permissions;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
namespace Umbraco.Core.Packaging
@@ -5,7 +5,7 @@ using System.Data.SqlClient;
using System.Data.SqlServerCe;
using System.Linq;
using MySql.Data.MySqlClient;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Persistence.FaultHandling;
@@ -1,5 +1,5 @@
using System;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Persistence.Mappers
{
@@ -2,7 +2,7 @@
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Persistence.Mappers
{
@@ -1,5 +1,5 @@
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Persistence.Mappers
{
@@ -1,5 +1,5 @@
using System.Collections.Generic;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Persistence.Migrations
{
@@ -1,5 +1,5 @@
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.Persistence.Migrations
{
@@ -1,6 +1,6 @@
using System;
using Umbraco.Core.Configuration;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Persistence.SqlSyntax;
using Umbraco.Core.PropertyEditors;
@@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.Linq;
using NPoco;
using Umbraco.Core.Configuration;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.Rdbms;
using Umbraco.Core.Persistence.DatabaseModelDefinitions;
@@ -4,8 +4,8 @@ using System.Linq;
using LightInject;
using NPoco;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.DI.CompositionRoots;
using Umbraco.Core.Composing;
using Umbraco.Core.Composing.CompositionRoots;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Rdbms;
@@ -5,8 +5,8 @@ using LightInject;
using NPoco;
using Semver;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.DI.CompositionRoots;
using Umbraco.Core.Composing;
using Umbraco.Core.Composing.CompositionRoots;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Rdbms;
@@ -4,8 +4,8 @@ using System.Linq;
using LightInject;
using NPoco;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.DI.CompositionRoots;
using Umbraco.Core.Composing;
using Umbraco.Core.Composing.CompositionRoots;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.EntityBase;
@@ -4,8 +4,8 @@ using System.Linq;
using LightInject;
using NPoco;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.DI.CompositionRoots;
using Umbraco.Core.Composing;
using Umbraco.Core.Composing.CompositionRoots;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Rdbms;
@@ -4,8 +4,8 @@ using System.Linq;
using LightInject;
using NPoco;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.DI.CompositionRoots;
using Umbraco.Core.Composing;
using Umbraco.Core.Composing.CompositionRoots;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Rdbms;
@@ -5,7 +5,7 @@ using System.Linq.Expressions;
using NPoco;
using Umbraco.Core;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.EntityBase;
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text.RegularExpressions;
using NPoco;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Events;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
+1 -1
View File
@@ -7,7 +7,7 @@ using System.Security;
using System.Text;
using System.Web;
using System.Web.Compilation;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
namespace Umbraco.Core.Plugins
@@ -3,7 +3,7 @@ using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
namespace Umbraco.Core.PropertyEditors
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Models;
using Umbraco.Core.Serialization;
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Manifest;
namespace Umbraco.Core.PropertyEditors
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Newtonsoft.Json;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Manifest;
namespace Umbraco.Core.PropertyEditors
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
@@ -1,5 +1,5 @@
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
@@ -4,7 +4,7 @@ using System.Globalization;
using System.Linq;
using System.Xml.Linq;
using Newtonsoft.Json;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Manifest;
using Umbraco.Core.Models;
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LightInject;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
@@ -5,7 +5,7 @@ using System.Web;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Umbraco.Core.Configuration;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.PublishedContent;
@@ -3,7 +3,7 @@ using System.Globalization;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Core.Services;
@@ -1,7 +1,7 @@
using System;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.PublishedContent;
+1 -1
View File
@@ -5,7 +5,7 @@ using System.Data;
using System.Runtime.Remoting.Messaging;
using System.Text;
using System.Web;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Events;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
@@ -15,7 +15,7 @@ using AutoMapper;
using Microsoft.Owin;
using Newtonsoft.Json;
using Umbraco.Core.Configuration;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Models.Membership;
using Umbraco.Core.Logging;
@@ -8,7 +8,7 @@ using System.Web;
using System.Web.Configuration;
using System.Web.Hosting;
using System.Web.Security;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
@@ -6,7 +6,7 @@ using System.Web;
using System.Xml;
using System.Xml.Linq;
using Umbraco.Core.Configuration;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Models;
using Umbraco.Core.Persistence.Repositories;
using Umbraco.Core.PropertyEditors;
@@ -2,7 +2,7 @@
using System.Globalization;
using System.Linq;
using System.Threading;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Dictionary;
namespace Umbraco.Core.Services
@@ -6,7 +6,7 @@ using System.Linq;
using System.Xml;
using System.Xml.Linq;
using Umbraco.Core.Cache;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
namespace Umbraco.Core.Services
@@ -12,7 +12,7 @@ using System.Xml.XPath;
using Newtonsoft.Json;
using Umbraco.Core.Configuration;
using Umbraco.Core.Configuration.UmbracoSettings;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Events;
using Umbraco.Core.Exceptions;
using Umbraco.Core.IO;
+1 -1
View File
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Editors;
@@ -1,6 +1,6 @@
using System.IO;
using Umbraco.Core.Components;
using Umbraco.Core.DI;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Manifest;

Some files were not shown because too many files have changed in this diff Show More