- ASP.NET jQuery Cookbook(Second Edition)
- Sonal Aneel Allana
- 277字
- 2021-07-16 13:12:06
Using NuGet Package Manager to download jQuery
NuGet is a package manager available with Visual Studio. It simplifies the process of installing and upgrading packages. This recipe demonstrates the use of NuGet to download the jQuery library.
Getting ready
To launch NuGet for a particular project, go to Tools | NuGet Package Manager | Manage NuGet Packages for Solution... as shown in the following screenshot:

Alternatively, right-click on the project in the Solution Explorer tab, and select Manage NuGet Packages.
How to do it…
Perform the following steps to download jQuery using NuGet Manager:
- In the NuGet Package Manager, as shown in the following screenshot, select the jQuery package from the left-hand side panel. In the right-hand side panel, select the Version that you would like to use in your web project from the drop-down menu. Click on the Install button:
Tip
Searching for packages in NuGet
If jQuery is not visible in the left-hand side panel, you need to search for it by keying in
jQuery
in the search box in the top left corner of the NuGet Manager screen. - Click on OK when prompted for confirmation in order to make the required changes to the solution.
How it works…
The NuGet Package Manager downloads the selected version of jQuery in the Scripts folder. Any other version existing in the Scripts folder is deleted. The Scripts folder will look like the following screenshot:

The files downloaded by NuGet are as follows (the version numbers may change in the future):
- The Intellisense file: jquery-2.1.4.intellisense.js
- The debug version : jquery-2.1.4.js
- The release version: jquery-2.1.4.min.js
- The map file: jquery-2.1.4.min.map
See also
The Downloading jQuery from jQuery.com recipe
- 微服務設計(第2版)
- Mobile Web Performance Optimization
- Python數(shù)據(jù)分析入門與實戰(zhàn)
- 云計算通俗講義(第3版)
- CRYENGINE Game Development Blueprints
- Raspberry Pi Robotic Projects(Third Edition)
- 分布式數(shù)據(jù)庫原理、架構與實踐
- Raspberry Pi Blueprints
- Responsive Web Design with jQuery
- 網(wǎng)絡綜合布線與組網(wǎng)實戰(zhàn)指南
- Java 9:Building Robust Modular Applications
- Raspberry Pi Robotic Projects
- Python網(wǎng)絡爬蟲從入門到實踐
- Python編程基礎
- HTML5+CSS3從入門到精通(微課精編版)