While trying to get a nuget build workflow running on Linux / mono, I noticed a strange thing.
Being on Linux, I cannot use the Visual Studio Visual Studio plugin or the Powershell console, but I have the nuget.exe command line utility. This utility has an “install” command that correctly extracts packages and puts them in the directory of my packages.
However, installing nuget.exe (unlike installing Visual Studio) does not update package.config with the packages added and does not add the project link to my .csproj. The latter is less important (I can do it manually), since package.config must contain recursive dependencies, and I cannot do it manually ...
Has anyone else tried to install new packages exclusively using nuget.exe or have any idea about this? Do I bark at the wrong tree?
source share