I have a Portable Class Library project in Xamarin Studio, with a corresponding test (NUnit Library) project. Some of the public APIs in the PCL project consume or return classes from NuGet packages, e.g. System.Collections.Immutable
.
How can I make those available to the test project without explicitly re-adding them all as references? It seems as though there should be some way to tell the PCL project to export all its dependencies, or the test project to resolve transitive dependencies, but I can't see how to do it.