I need to build an MSI package which includes entire directories from the source tree. We are using InstallShield LE and a Deployment Project in Visual Studio (2013 Proffessional); the answer to "InstallShield LE - Relative paths to file" explains very nicely how to deploy files, but the gist of it is:
- Ensure your file is included in your MSBuild Project.
- Mark your file as with "Build Action == Content" and "Copy to Output Directory"
- Now it will available to select in the deployment Projects "Source computer's files".
The trouble is (a) I would rather not fiddle with the "Build Action" field for some of the files I want to install and (b) there is no such field for directories (we install them into the MSBuild bindir using post-build actions and XCOPY).