rbdk
rbdk

Reputation: 93

Difference between NuGet packages and extensions

In Visual Studio under Tools menu, what is the difference between "NuGet Package Manager" -> "Manage NuGet Packages for Solution..." and "Extensions and Updates..." ?

Upvotes: 5

Views: 3657

Answers (2)

Vahid Ghadiri
Vahid Ghadiri

Reputation: 4076

Extension Manager installs extension which extends the Visual Studio meanwhile NuGet NuGet package manager helps developer to add, update and delete the external library (Packages) and their dependency in your application. Also you can create package from GuNet and share to the world.

Upvotes: 0

Hans Kesting
Hans Kesting

Reputation: 39283

Nuget packages are project-specific and travel through source control to your colleagues. An installed extension works in all your own solutions/projects and doesn't get shared.

Upvotes: 10

Related Questions