I could not find the answer to this question. I used to use Nu and was able to determine where the "gems" should be installed. For example, I like to keep the project structure as follows:
Myproject
| -MyProject.build
| -MyProject.sln
| -doc
| -lib
| | - ... my packages / gems ...
| -sql
| -src
| | -app
| | -test
| -tools
As you can see, I like to keep the "lib" folder for third-party libraries that are used in my solution. Using Nu, in the root directory of my project, I could just use the command:
nu install log4net --location = lib
By doing this, you grab the requested package and put it in my "lib" folder for later reference.
So, is this possible using the "Package Manager Console" in VS.NET? Should I use some other method? Thanks for the help!
source share