V17 - Removing obsoleted code from Umbraco.Web (#19983)

* Removing obsoleted code from AspNetCoreCookieManager.cs & Dependencies

* Removing obosoleted code from AspNetCoreBackOfficeInfo.cs

* Removing obosoleted code from PublishedContentExtensions.cs

* Removing obosoleted code from UmbracoMvcConfigureOptions.cs

* Removing obosoleted code from UmbracoVirtualPageRoute.cs

* Removing obsoleted constructor from BasicAuthenticationMiddleware.cs

* Removing obsoleted constructors from UmbLoginController.cs

* Removing unused constructor
This commit is contained in:
Nicklas Kramer
2025-08-26 12:54:03 +02:00
committed by GitHub
parent 07abec239d
commit 156bcdc98a
8 changed files with 1 additions and 152 deletions

View File

@@ -34,15 +34,6 @@ public class BasicAuthenticationMiddleware : IMiddleware
_backOfficePath = hostingEnvironment.GetBackOfficePath();
}
[Obsolete("The globalSettings parameter is not required anymore, use the other constructor instead. Scheduled for removal in Umbraco 17.")]
public BasicAuthenticationMiddleware(
IRuntimeState runtimeState,
IBasicAuthService basicAuthService,
IOptionsMonitor<GlobalSettings> globalSettings,
IHostingEnvironment hostingEnvironment)
: this(runtimeState, basicAuthService, hostingEnvironment)
{ }
/// <inheritdoc />
public async Task InvokeAsync(HttpContext context, RequestDelegate next)
{