I'm using NuGet CLI tool to manage package dependencies in a non-VisualStudio environment. Is there a way to use the packages.config file with the command install and get all dependencies that the listed dependencies in the packages.config file have? The whole dependency graph.
Example: My packages.config lists one dependency A. The A package has a dependency B.
If I run nuget install packages.config I only get package A.
If I run nuget install A I also get B.
I'm afraid I have to write a script to read the packages.config, looping through all dependencies calling install for each, to make this work.
Are there any other possibilities just using the CLI tool?