For my small examples of projects in .NET (built directly on the command line without using Visual Studio), I want to use Nuget.exe directly to get the libraries I need without fixing them in the source repository.
I managed to install them using the command
nuget install packages.config -o $destinationFolder
specifying the necessary packages in packages.config (for example, Nuget in Visual Studio). However, I cannot update installed packages. I tried to use this command
nuget update packages.config -r $destinationFolder
but Nuget.exe complains that
unable to locate project file for '...packages.config'`.
I searched on the Internet, but I only found a similar question on the Nuget discussion forums without answers.
source share