tom-englert / Wax

An interactive editor for WiX setup projects.
MIT License
220 stars 25 forks source link

MSBuild #40

Closed watsug closed 7 years ago

watsug commented 7 years ago

Is it possible to integrate this tool with MSBuild only? We do not have VS installed on build server (Jenkins). So the question is what can we do?

tom-englert commented 7 years ago

Wax is just an interactive editor to maintain your wix source files. What you need to install on the build server is the WiX Toolset (http://wixtoolset.org/)

maikebing commented 7 years ago

@watsug
use %comspec% /k ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\VsMSBuildCmd.bat""

and

msbuild.exe %1 /t:Rebuild /p:Configuration=Release;Platform="x86"

you can add task to Jenkins !

maikebing commented 7 years ago

@watsug WiX will WiX project will be compiled ! Wax just a editor !