mihkov
mihkov

Reputation: 1189

Visual Studio Community 2015 adding a reference to project

I have a project that requires a System.Web.Helpers.dll Version=3.0.0.0. But when I click in the solution explorer Add reference and start search for System.Web.Helpers there are two versions on this library.

But where is 3.0.0.0. If I open the windows explorer and search for this version I found this library in different locations with 3.0.0.0 version. Why Visual Studio can't find this version?

(I don't want to use browse button) Already tried to change targeting .NET version of the project from 4.5 to 4.5.2, to 4.6, to 4.6.1 - same.

Upvotes: 0

Views: 710

Answers (1)

Fabien ESCOFFIER
Fabien ESCOFFIER

Reputation: 4911

This is shipped as a nuget package. Add it to your project using the nuget package manager.

Upvotes: 2

Related Questions