Sanjeev S
Sanjeev S

Reputation: 1163

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

Reference

Upvotes: 16

Views: 20443

Answers (1)

jGroot
jGroot

Reputation: 623

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://learn.microsoft.com/en-us/dotnet/api/system.web.http.httperror?view=aspnetcore-2.1

Upvotes: 6

Related Questions