Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the nuget package Microsoft.AspNet.WebApi.Core 5.2.7 compatible with .Net Core 2.2?

I am getting the following warning in my .NET Core 2.2 application:

Warning NU1701  Package 'Microsoft.AspNet.WebApi.Core 5.2.7' was restored using 
'.NETFramework,Version=v4.6.1' instead of the project target framework 
'.NETCoreApp,Version=v2.2'. 
This package may not be fully compatible with your project.

Are there any alternatives for this package?

like image 564
Balaji Kanagaraju Avatar asked Mar 05 '19 08:03

Balaji Kanagaraju


1 Answers

As said in comments, this is not needed for a ASP.NET Core project. Remove it via NuGet and you should be good to go.

like image 164
Ogglas Avatar answered Oct 21 '22 22:10

Ogglas