System.Web.Http missing in .net Core 2.1
问题 System.Web.Http is missing in my .net core 2.1 project. the error states Error CS0234 The type or namespace name 'Http' does not exist in the namespace 'System.Web' (are you missing an assembly reference?) please refer the image for more clarity 回答1: System.Web.Http is not available in dotnet core, but may be referenced by installing the following nuget package: Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll. This will clear the error. Source: https://docs.microsoft.com/en-us/dotnet/api/system