Re: Referencing custom DLLs.
You don't put DLLs in the output folder. The IDE does that. The DLLs should be somewhere else. Perhaps you could add a Libraries folder to the project or the like. You then reference the DLLs in that location and set the Copy Local property of the reference to True. When you build, the DLLs will be copied from the original location to the output folder. When you deploy, you installer will pick up the DLLs along with the EXE from the output folder or, if you're using XCOPY, you copy them yourself.
Re: Referencing custom DLLs.
Thanks jmcilhinney. I will try this out.
Re: Referencing custom DLLs.
After a few minutes of trying, it seems that it is not possible to reference a folder in a project. I can create a new folder and copy the dll on it but then it wouldn't be shared across other developers. It will only be available for this project still.
Re: Referencing custom DLLs.
When we add a project to source control, we usually have a 'src' folder that contains the solution and a 'dlls' folder that contains external references and they are both under the 'trunk' folder in SVN.