I hope this isn't to broad, but I am wondering if the following can be done somehow?
Lets say I have a Nuget-package for Project A and a solution with some projects (Project B, Project C). Now, Project C references Project B. It also has a Nuget-Dependency for Project A (which was developed within a different solution).
When I compile Project C, I get the dll of Project C along with the dll for Project A. Is there a way, the dependencies can be compiled into the dll for Project C, so that i only have one dll which conatains all its dependencies as well as the actual project?
The Reason is that I want to load ProjectC.dll at runtime in a different solution. But when i do so, the dependencies are missing.
How would one usually handle that?