Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get latest jQuery 1.x via Nuget in Visual Studio?

How can I get latest jQuery 1.x (not the latest 2.x) via NuGet in Visual Studio? The Manage NuGet Packages Window, when I search for NuGet only offers the latest 2.x package.

Thx in advance

like image 226
g.pickardou Avatar asked Sep 19 '14 09:09

g.pickardou


People also ask

How do I get NuGet packages in Visual Studio?

NuGet Package ManagerSelect Project > Manage NuGet Packages. In the NuGet Package Manager page, choose nuget.org as the Package source. From the Browse tab, search for Newtonsoft.Json, select Newtonsoft.Json in the list, and then select Install. If you're prompted to verify the installation, select OK.

How do I update NuGet library?

Update a package. In Solution Explorer, right-click either References or the desired project, and select Manage NuGet Packages.... (In web site projects, right-click the Bin folder.) Select the Updates tab to see packages that have available updates from the selected package sources.


1 Answers

in your Package Manager console type following:

Install-Package JQuery -Version Press Tab here to see all version here

enter image description here

like image 132
SoftSan Avatar answered Sep 21 '22 17:09

SoftSan