.NET Framework NuGet packaging system Managing Packages through the console

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

Click the menus Tools -> NuGet Package Manager -> Package Manager Console to show the console in your IDE. Official documentation here.

Here you can issue, amongst others, install-package commands which installs the entered package into the currently selected "Default project":

Install-Package Elmah

You can also provide the project to install the package to, overriding the selected project in the "Default project" dropdown:

Install-Package Elmah -ProjectName MyFirstWebsite


Got any .NET Framework Question?