Kishore Sahasranaman
Kishore Sahasranaman

Reputation: 4230

Visual Studio : ASP.Net MVC4 project publishing missing dlls

Following dlls are missing while publishing a ASP.Net MVC 4 project.

System.Net.Http.Formatting.dll 
System.Web.Http.dll 
System.Web.Http.WebHost.dll

Any idea ?

Note :
Am publishing my files to a local path. There am not able to find these dlls in bin folder. And when hosted in an IIS, getting the error as dll is missing.

Upvotes: 0

Views: 1305

Answers (1)

Jaimin Soni
Jaimin Soni

Reputation: 1071

I had same problem. I used NuGet package for these missing library.

Type the following command into Tools > Library Package Manager > Package Manager Console:

Install-Package Microsoft.AspNet.WebApi.Client

Upvotes: 1

Related Questions