I read a few questions about Stackoverflow about creating mergemodules via the command line, but they were all accepted when someone suggested using devenv to compile or using Dark to create wix files from existing msi files.
Given the following:
- VisualStudio is not installed on the build server that I have to use.
- I use nant + msbuild to compile solutions
- I would like to compile mergemodules from .vdproj (because Visual Studio automatically detects dependencies)
- and create a msi setup from multiple mergemodules
... how can I build merge modules from the command line without devenv and not lose the convenience of automatically resolving dependencies for mergemodules in visualstudio? Maybe there is nanttask for this I have not found?
source
share