I want to have common code (code library, controls, utilities, helper classes, etc.) in Visual Studio. I do not mean general assemblies, I mean general code (i.e. I want to send one assembly with my application, the executable assembly).
The technique in other development environments is to have common source code in the path on my machine, and the IDE provides a list of paths for finding code files.
Visual Studio does not support code search paths.
The backup fix is ββto copy the source code over and over to each project. But then, in order to save them as one version, they are separated in the source control. This works well when the source code provider is Microsoft Visual SourceSafe - which supports shared files.
But other version control products (CVS, Subversion, Microsoft Team Foundation Source Save Server, SVN) do not support shared files.
So, how does everyone else avoid delivering the DLL with their executable?
Update 1
This is a single file deployment problem. ClickOnce generates 18 files in 3 folders (i.e. more than one file)
source share