I'm building an installer for a Visual Studio 2010 solution and I've decided to go with WiX. I've added the WiX setup project to the solution and am trying to configure it in a similar fashion to the rest of the projects in the solution.
The way those projects are setup is that their project files are in a seperate directory from the rest of the source:
Source
Core
UI
Projects <- .vcproj files for the Core and UI projects are in this directory
...
Now the new project for the WiX installer is called Setup so the directory tree now looks like:
Source
Core
UI
Setup
Projects <- .wixproj for Setup is here, and I want it's source files in the Setup directory
...
The problem is that whenever I add a source file to the Setup project, it copies the file from where it is to the Projects directory, next to the .wixproj file.
Is there something I can set on the project to prevent this behaviour and include WiX source files in-place?
Bryan's comment basically covered it: