diff --git a/src/Umbraco.Tests.Integration/RuntimeTests.cs b/src/Umbraco.Tests.Integration/RuntimeTests.cs
index 52a4ac1062..2974a01669 100644
--- a/src/Umbraco.Tests.Integration/RuntimeTests.cs
+++ b/src/Umbraco.Tests.Integration/RuntimeTests.cs
@@ -1,10 +1,7 @@
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.AspNetCore.Http;
-using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Moq;
using NUnit.Framework;
-using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Umbraco.Core;
@@ -16,7 +13,7 @@ using Umbraco.Tests.Integration.Extensions;
using Umbraco.Tests.Integration.Implementations;
using Umbraco.Tests.Integration.Testing;
using Umbraco.Web.BackOffice.AspNetCore;
-using Umbraco.Web.Common.AspNetCore;
+using Umbraco.Web.Common.Extensions;
namespace Umbraco.Tests.Integration
{
diff --git a/src/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTest.cs b/src/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTest.cs
index 3d94e52860..43504e908a 100644
--- a/src/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTest.cs
+++ b/src/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTest.cs
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
-using System.Data.Common;
using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
@@ -20,8 +19,8 @@ using Umbraco.Core.Strings;
using Umbraco.Tests.Common.Builders;
using Umbraco.Tests.Integration.Extensions;
using Umbraco.Tests.Integration.Implementations;
-using Umbraco.Tests.Testing;
using Umbraco.Web.BackOffice.AspNetCore;
+using Umbraco.Web.Common.Extensions;
namespace Umbraco.Tests.Integration.Testing
{
diff --git a/src/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj b/src/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj
index 320db33568..59b7de4cf4 100644
--- a/src/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj
+++ b/src/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj
@@ -4,6 +4,7 @@
Exe
netcoreapp3.1
false
+ 8
diff --git a/src/Umbraco.Web.Common/AspNetCore/AspNetCoreUmbracoApplicationLifetime.cs b/src/Umbraco.Web.Common/AspNetCore/AspNetCoreUmbracoApplicationLifetime.cs
index 38d78860b0..c8d8f40a00 100644
--- a/src/Umbraco.Web.Common/AspNetCore/AspNetCoreUmbracoApplicationLifetime.cs
+++ b/src/Umbraco.Web.Common/AspNetCore/AspNetCoreUmbracoApplicationLifetime.cs
@@ -6,7 +6,7 @@ using Umbraco.Net;
namespace Umbraco.Web.Common.AspNetCore
{
- public class AspNetCoreUmbracoApplicationLifetime : IUmbracoApplicationLifetime, IUmbracoApplicationLifetimeManager
+ public class AspNetCoreUmbracoApplicationLifetime : IUmbracoApplicationLifetimeManager
{
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly IHostApplicationLifetime _hostApplicationLifetime;
diff --git a/src/Umbraco.Web.Common/AspNetCore/UmbracoCoreServiceCollectionExtensions.cs b/src/Umbraco.Web.Common/Extensions/UmbracoCoreServiceCollectionExtensions.cs
similarity index 99%
rename from src/Umbraco.Web.Common/AspNetCore/UmbracoCoreServiceCollectionExtensions.cs
rename to src/Umbraco.Web.Common/Extensions/UmbracoCoreServiceCollectionExtensions.cs
index 99a274364b..6f2b31bac1 100644
--- a/src/Umbraco.Web.Common/AspNetCore/UmbracoCoreServiceCollectionExtensions.cs
+++ b/src/Umbraco.Web.Common/Extensions/UmbracoCoreServiceCollectionExtensions.cs
@@ -17,9 +17,10 @@ using Umbraco.Core.Logging;
using Umbraco.Core.Logging.Serilog;
using Umbraco.Core.Persistence;
using Umbraco.Core.Runtime;
+using Umbraco.Web.Common.AspNetCore;
using Umbraco.Web.Common.Runtime.Profiler;
-namespace Umbraco.Web.Common.AspNetCore
+namespace Umbraco.Web.Common.Extensions
{
public static class UmbracoCoreServiceCollectionExtensions
{
diff --git a/src/Umbraco.Web.Common/Lifetime/UmbracoRequestLifetime.cs b/src/Umbraco.Web.Common/Lifetime/UmbracoRequestLifetime.cs
index 43810a9e66..0d858679a6 100644
--- a/src/Umbraco.Web.Common/Lifetime/UmbracoRequestLifetime.cs
+++ b/src/Umbraco.Web.Common/Lifetime/UmbracoRequestLifetime.cs
@@ -3,7 +3,7 @@ using Microsoft.AspNetCore.Http;
namespace Umbraco.Web.Common.Lifetime
{
- public class UmbracoRequestLifetime : IUmbracoRequestLifetime, IUmbracoRequestLifetimeManager
+ public class UmbracoRequestLifetime : IUmbracoRequestLifetimeManager
{
public event EventHandler RequestStart;
public event EventHandler RequestEnd;
diff --git a/src/Umbraco.Web.Common/Runtime/Profiler/WebProfiler.cs b/src/Umbraco.Web.Common/Runtime/Profiler/WebProfiler.cs
index 431c195d90..bdbc6f164d 100644
--- a/src/Umbraco.Web.Common/Runtime/Profiler/WebProfiler.cs
+++ b/src/Umbraco.Web.Common/Runtime/Profiler/WebProfiler.cs
@@ -119,15 +119,5 @@ namespace Umbraco.Web.Common.Runtime.Profiler
if (bool.TryParse(request.Cookies["UMB-DEBUG"], out var cUmbDebug)) return cUmbDebug;
return false;
}
-
- ///
- /// Indicates the boot phase.
- ///
- private enum BootPhase
- {
- Boot = 0, // boot phase (before the 1st request even begins)
- BootRequest = 1, // request boot phase (during the 1st request)
- Booted = 2 // done booting
- }
}
}
diff --git a/src/Umbraco.Web/AspNet/AspNetUmbracoApplicationLifetime.cs b/src/Umbraco.Web/AspNet/AspNetUmbracoApplicationLifetime.cs
index f0ff6e3cad..8c43293ad7 100644
--- a/src/Umbraco.Web/AspNet/AspNetUmbracoApplicationLifetime.cs
+++ b/src/Umbraco.Web/AspNet/AspNetUmbracoApplicationLifetime.cs
@@ -5,7 +5,7 @@ using Umbraco.Net;
namespace Umbraco.Web.AspNet
{
- public class AspNetUmbracoApplicationLifetime : IUmbracoApplicationLifetime, IUmbracoApplicationLifetimeManager
+ public class AspNetUmbracoApplicationLifetime : IUmbracoApplicationLifetimeManager
{
private readonly IHttpContextAccessor _httpContextAccessor;