As the part of a bigger solution, I have two projects.
One is c++ library packed as a DLL, and other is .NET wrapper for it.
What would be the best way to indicate to Visual Studio that output DLL from first project is to be pulled into the destination folder of second project, and more: for projects that use wrapper, will they pick up also the DLL from the first one.
I could do it with post-build steps, but I'm after something more sophisticated. Is that possible?
EDIT: we could also ask: "How to add unmanaged reference?"
I guess I found a solution, that might be satisfying...
Steps: