I\'m currently integrating my Wix projects in MSBuild. It is necessary for me to pass multiple values to the Wix project. One value will work (ProductVersion in the sample b
You could pass it as parameter, not constant. The code will look like this:
Now in WiX project add a constant:
BuildVersion=$(ProductVersion)
And use it in *.wxs file where needed:
$(var.BuildVersion)
For instance:
This will work with multiple parameters.