When I build a solution on my build server it generates a binaries folder and then later on copies these binaries to the final output folder. In my case some of the third party assemblies REFERENCES are correctly copied over while other 3rd part assemblies REFERENCES are not copied over. Take not that my solution projects do not directly reference the assemblies being copied over.
This means that everything build fine. But when I run my program it doesn't start since the assemblies it's referencing can't in turn load their references.
What process in the build determines what assemblies are copied over to the binaries folder? Is there any way to specify that it should copy all assemblies?
Edit : One possible solution is to just reference all required assemblies in one of the projects in the solution but this gets very messy.