I'm confused as how to package third party dll's inside of a NuGet package. I've created a nuspec file from my csproj. This package's the csproj's output dll without a problem. I then add a element and add my 2 third party dll's. This works and packs the dll's inside of the package. I've installed the package in second project, but the only file copied to the bin is the output of the first project.
How do I get the dll's in the package's lib directory to be copied to the second project's bin?
I can't seem to find this answer anywhere.