Align namespaces in DependencyInjection to Umbraco.Cms.Infrastructure.DependencyInjection

Even though Core also has this, then pretty much every project has their own DI namespace, and this one does reference third party dependencies as far as I can see
This commit is contained in:
Mole
2021-02-12 10:41:07 +01:00
parent abd5c5fe94
commit b74abaf3af
15 changed files with 15 additions and 15 deletions

View File

@@ -2,12 +2,12 @@ using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using Umbraco.Cms.Core.DependencyInjection;
using Umbraco.Cms.Infrastructure.DependencyInjection;
using Umbraco.Cms.Web.Common.Routing;
using Umbraco.Cms.Web.Website.Collections;
using Umbraco.Cms.Web.Website.Controllers;
using Umbraco.Cms.Web.Website.Routing;
using Umbraco.Cms.Web.Website.ViewEngines;
using Umbraco.Infrastructure.DependencyInjection;
namespace Umbraco.Extensions
{