NuGet

Leave a comment

Nuget is a package manager for the Microsoft platform. It runs within Visual Studio.

To use it, open Visual Studio and go to Tools->NuGet Package Manager:

Select Manage NuGet Packages for Solution and you will be able to see what is already installed and if there are any updates available. You can also install new packages.

To update, select Updates, select the package to update and click Update:

You can also use the Package Manager Console to run NuGet commands:

For example, to install a NuGet package, the command would be:

Install-Package <packagename>

To update:

Update-Package <packagename>

To downgrade a package, you need to uninstall it and reinstall.

To uninstall:

Uninstall-Package <packagename>

Install a particular version of a package:

Install-Package <packagename> -Version <versionnumber>

 

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

Leave a Reply

Your email address will not be published. Required fields are marked *