In my project I'm using some third-party libraries. I include them using the references folder in Visual Studio.
But where should I save the DLL files? They are referenced from a path in the file system, but it would be nice if I can include it into the project. But how?
This is what I do:
You can also add a solution folder and add them there.
The answer above was when NuGet was in infancy. FWIW, my approach where we have NuGet items:
packages.config
file if needed to lock down the version to a particular packageI actually use NuGet for managing even internal dependencies and have a private feed.