How does one list all locally installed NuGet packages?
Is there a NuGet equivalent of RPM -qa
? Within Chocolatey there is the chocolatey list -localonly
, but for the life of me I cannot find the NuGet equivalent of that command.
In the NuGet Package Manager Console, enter the following command:
Get-Package
This will either print out a list of installed packages, or if none are present write the following line to the console:
PM> Get-Package
No packages installed.
For more details, have a look at the NuGet PowerShell Reference.