This topic describes how to find, install, remove, and update NuGet packages using PowerShell commands. You can also work with packages using theManage NuGet Packages dialog box. For more information, see [Using the Manage NuGet Packages dialog](Using-the Add-Library-Package-Reference-Dialog-Box).
Using PowerShell commands is required if you want to install a package without having a solution open. It's also required in some cases for packages that create commands that you can access only by using PowerShell.
From the Tools menu, select Library Package Manager and then clickPackage Manager Console.
The Package Manager Console window is displayed.
The two drop-down lists set default values that let you omit parameters from the commands you enter in the window:
When you enter commands, you can override these defaults. In the Package Manager Console window, enterGet-Package -ListAvailale
at the prompt to see a list of all packages that are available in the selected package source.
For the default package source, that command is going to list thousands of packages. It makes better sense to specify a filter.
For example, to find the logging package ELMAH, enter Get-Package -ListAvailable -Filter elmah
(the name of the package) orGet-Package -Filter Logging -ListAvailable
(a keyword in the package description).
For more options that you can specify with the Get-Package
command, enterGet-Help Get-Package
, or see Package Manager Console Powershell Reference.
After you have found a package that you want to install, use the Install-Package
command with the name of the package. For example, enter the commandInstall-Package elmah
as shown in the following example:
For more options that you can specify with the Install-Package
command, enterget-help Install-Package
or see Package Manager Console Powershell Reference.
NuGet retrieves the package from the specified package source and installs it in the project that is selected in theDefault project drop-down list (unless you specify a different project in the command). Files are copied to the solution, references might be added to the project, the projectapp.config or web.config file might be updated, etc.
If the package you are installing is dependent on other packages, NuGet installs them also if they are not already installed.
If the package requires license acceptance, you will not be prompted in a dialog box. Instead, a message states that your use of the library constitutes license acceptance.
In Solution Explorer, you can see references that Visual Studio has added for the installed library or libraries.
If your app.config or web.config file required changes, those have been applied. The following example shows some of the changes for ELMAH.
A new folder named packages is created in your solution folder. (If your project does not have a solution folder, thepackages folder is created in the project folder.)
The packages folder contains a subfolder for each installed package. This subfolder contains the files installed by the package. It also contains the package file itself (the.nupkg file, which is a .zip file that contains all of the files included in the package).
You can now use the library in your project. IntelliSense works when you enter code, and library features such as the ELMAH logging information page work when you run the project.
Some packages install new commands that you can use in the Package Manager Console window. One example of such a package isMvcScaffolding
, which creates commands you can use to generate ASP.NET MVC controllers and views. The following illustration shows that installing MvcScaffolding creates a new commandScaffold
, complete with tab expansion.
From the Tools menu, select Library Package Manager and then clickPackage Manager Console. If you do not already know the name of the package you want to remove, enterGet-Package
at the prompt without any flags to see a list of all of the packages that are currently installed.
To remove a package, use the Uninstall-Package
command with the name of the package. For example, use theUninstall-Package elmah
command as shown in the following example:
For more options that you can specify with the uninstall-package
command, enterget-help uninstall-package
or see Package Manager Console Powershell Reference.
The following package elements are removed:
If other packages were installed because they were dependencies of the package that you removed, and if no other packages remain that are dependent on the dependency packages, the dependency packages are also removed.
From the Tools menu, select Library Package Manager and then clickPackage Manager Console. To check if there are newer versions available for any installed packages, enterGet-Package -updates
at the prompt.
To update a package, enter Update-Package
with the package ID. For example, enter the commandUpdate-Package jQuery
. For more options that you can use with the Update-Package
command, enter get-help Update-Package
or see (../Reference/Package-manager-Console-Commands).
Powershell supports the concept of profiles which allow you to have commonly used PS commands available to you wherever you use PowerShell.
NuGet supports a NuGet specific profile typically located at:
%UserProfile%\Documents\WindowsPowerShell\NuGet_profile.ps1
The easiest way to find the profile file is to type $profile
within the NuGet Package Manager Console. For example, this is what I see on my machine.
PM> $profile C:\Users\philha\Documents\WindowsPowerShell\NuGet_profile.ps1
This file doesn't necessarily exist by default. You can run the following set of commands to create it.
PM> mkdir -force (split-path $profile) PM> notepad $profile
The first command creates the WindowsPowershell directory if it doesn’t already exist. The second command attempts to open the profile file in Notepad. If it doesn’t already exist, it prompts you to create the file. Within the profile file, you can change PowerShell settings or add new commands you might find useful.
Here is a simple example of adding a command that allows you to set the font.
function Set-FontSize { param( [ValidateRange(6, 128)] [Parameter(position=0, mandatory=$true)] [int]$Size ) $dte.Properties("FontsAndColors", "TextEditor").Item("FontSize").Value = $Size }
Save the profile file and then restart Visual Studio. The next time you open the Package Manager Console, you will be able to make use of theSet-Font
command.
PM> Set-Font 24
That makes for much more readable code!