Skip to main content

Install and configure Nuget Package

When you use NuGet to install a package, it copies the library files to your solution and automatically updates your project (add references, change config files, etc.). If you remove a package, NuGet reverses whatever changes it made so that no clutter is left.

To Install Nuget you have to follow below steps:-
  1. Download Nuget from here and install.
  2. If there is an error during Nuget installation like VSIXInstaller.SignatureMismatchException (for error, see in log file direct link given in error pop-up window).
  3. To resolve the above problem you have to install a patch. You can download it here.
  4. Now you can install Nuget exe.
Once you are finished with installation please follow the below steps to configure the Nuget package:-
1.      Open Visual Studio 2010 and make a default ASP.NET (WebForms) Application.
2.      Right-click on References and click on Manage Nuget packages.
3.      There is the option Manage Nuget packages, click on it and all available packs will show up.
4.      You can check available online packages by clicking on the online tab.
5.      Now from the packages list you can install the required ones.
For more references please check here.

Comments