Remove most of the last references and rename LoggerFactory_ to LoggerFactory in UmbracoTestBase

This commit is contained in:
Mole
2020-09-21 13:04:57 +02:00
parent 581775e08c
commit d3ae921293
77 changed files with 470 additions and 491 deletions

View File

@@ -1,19 +1,19 @@
using System.Collections.Generic;
using System.Linq;
using Microsoft.Extensions.Logging;
using Umbraco.Core;
using Umbraco.Core.Composing;
using Umbraco.Core.Models.ContentEditing;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.Membership;
namespace Umbraco.Web.ContentApps
{
public class ContentAppFactoryCollection : BuilderCollectionBase<IContentAppFactory>
{
private readonly ILogger _logger;
private readonly ILogger<ContentAppFactoryCollection> _logger;
private readonly IUmbracoContextAccessor _umbracoContextAccessor;
public ContentAppFactoryCollection(IEnumerable<IContentAppFactory> items, ILogger logger, IUmbracoContextAccessor umbracoContextAccessor)
public ContentAppFactoryCollection(IEnumerable<IContentAppFactory> items, ILogger<ContentAppFactoryCollection> logger, IUmbracoContextAccessor umbracoContextAccessor)
: base(items)
{
_logger = logger;