What is equivalent to "npm install" in NuGet?

In a Node.js project, I just distribute the package.json file along with the rest of the source files, and anyone who wants to use this project just runs

 npm install 

and all the dependencies are loaded and placed in the node_modules directory.

In the NuGet world, there is a packages.config file that looks roughly equivalent to the Node dependency section of package.json . When I open cmd.exe or PowerShell, which command executes the npm install equivalent?

+4
source share
1 answer
 nuget install packages.config 

and get the command line NuGet.exe

+3
source

Source: https://habr.com/ru/post/1440159/


All Articles