I have a solution with several projects, all of which are DNX class libraries that emit nuget packages. Our build server adds versioning info in appropriate places to project.json
and AssemlyInfo
, packages all these projects in one go by building the solution, and then uploads them to a private NuGet feed. That all works gallantly.
However, some of these projects have dependencies on each-other. I would like to resolve them by actually adding nuget packages from the feed, rather than just referencing the project directly (if for no other reason, then because the dependency spec should reference the correct version, but I get a bunch of warnings about incorrect assembly versions since that step isn't done until on the build server).
How do I specify that project A depends on NuGet package B, even if there is a project named B in the same solution?