Let\'s assume I have a C# Winforms project, MainGUI.
It references another project in the same solution, ControlsLib.
ControlsLib references a third party co
I have just solved this by adding the following post build event command line to the .csproj file for MainGUI (project properties -> build events)
copy $(SolutionDir)ControlsLib\bin\$(ConfigurationName)\Infragistics2*.dll $(TargetDir)
I hadn't realised doing that was so easy actually...