I have the following Problem. I try to write a Class Library for my ASP.NET MVC 5 Project.
So I want to add the NuGet Package for the Entity Framework 6.2.0 and the System.Web.dll.
My Class Library has the Property:
Target framework: .NET Standard 2.0
My ASP.NET MVC Project have:
.NET Framework 4.6.1
So when I try to add the System.Web.dll I become the following error:
When I change the Target framework in my Library to .NET Standard 1.6 I can add the System.Web.dll but I become the Error:
I asked Google for the .NET Standards and found this Table
So I think .NET Standard 2.0 work with 4.6.1. And in my ASP.NET MVC Project I can add Entity Framework 6.2.0 and System.Web.dll so why I cant do this for my Class Library?
P.S. I only see .NET Standards in the porperty window.



