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>
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