I'm building a loosely-coupled app, where the main exe project only contains references to an assembly with interfaces. The concrete implementations of those interfaces are in assemblies that are referenced indirectly - via IoC. However, those assemblies' build output doesn't get copied to the bin\Debug
folder of the exe, which means my IoC can't find them.
How do I make sure those assemblies are copied, if there is no actual project/assembly reference?