I am using Visual Studio C# 2008 Express Edition. I have a Solution that has several projects, most of which are class libraries but two of which are executable projects (a GUI and a command-line interface).
Is there a good way to make a single ClickOnce installer that installs both of the executable projects?
If I make one of the projects be Referenced by the other project, I think it will let me do what I want, but that seems like a bad idea because it doesn't properly represent the real dependencies: neither executable project depends on the other, they just share a lot of code in the class libraries, and I'd like them to be installed together.