In order to support .NET Framework-based ASP .NET Core applications, OwaspHeaders.Core had to take a dependency on Microsoft.AspNetCore.Http.Abstractions, however as of this announcement (aka ASP .NET Core 3.0), .NET Framework is no longer supported by ASP .NET Core. As such this project now no longer supports .NET Framework.
This is achieved by replacing the requirement on the NuGet package Microsoft.AspNetCore.Http.Abstractions with a Framework Reference on Microsoft.AspNetCore.App.
Rationale for this PR
In order to support .NET Framework-based ASP .NET Core applications, OwaspHeaders.Core had to take a dependency on
Microsoft.AspNetCore.Http.Abstractions
, however as of this announcement (aka ASP .NET Core 3.0), .NET Framework is no longer supported by ASP .NET Core. As such this project now no longer supports .NET Framework.This is achieved by replacing the requirement on the NuGet package
Microsoft.AspNetCore.Http.Abstractions
with a Framework Reference onMicrosoft.AspNetCore.App
.This PR fixes #88