Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an alternative for vs Nuget Package Manager?

Tags:

nuget

Nuget command line does not have all useful features, like upgrading package version if other library requires higher version.

like image 777
wiero Avatar asked Aug 19 '15 19:08

wiero


People also ask

Does Visual Studio have a package manager?

To open the Package Manager Console in Visual Studio, select Tools > NuGet Package Manager > Package Manager Console from the top menu. The console is a Visual Studio window that you can arrange and position as you like. For more information, see Customize window layouts in Visual Studio.

Does Vscode support NuGet?

An extension for Visual Studio Code that lets you easily add or remove . NET Core 1.1+ package references to/from your project's .

Does Visual Studio come with NuGet?

Visual Studio Code (all platforms) does not have any direct NuGet integration. Use the NuGet CLI or the dotnet CLI. Azure DevOps provides a build step to restore NuGet packages. You can also host private NuGet package feeds on Azure DevOps.

What is the package manager used in Visual Studio?

The Package Manager Console is a PowerShell console within Visual Studio used to interact with NuGet and automate Visual Studio. You can access the Package Manager Console from within Visual Studio by going to Tools -> Library Package Manager -> Package Manager Console.


1 Answers

Paket is a great alternative to NuGet.

Everything works from command line. Although, if you want, you can also install the Paket for Visual Studio extension.

It works with regular NuGet feeds. You'll have to convert your packages.config files to Paket's format though.

It has a convert-from-nuget command to convert them from NuGet.

like image 64
Marcio Rinaldi Avatar answered Sep 22 '22 15:09

Marcio Rinaldi