[WiX-users] condition statements checking for valid .net framework 2.0 and 3.5 installs appear to not be getting evaluated

2008-04-14 Thread Robert O'Brien
My condition statements checking for valid .net framework 2.0 and 3.5 installs appear to not be getting evaluated. Looking at the log files for an msi with the following property value assignment and condition checks I see the expected values, e.g. Property(S): NFX20VERSION = 2.1.21022

[WiX-users] If-statements?

2006-10-23 Thread Christer Solskogen
I'm working on a project which have both a debug build and a release build, and our goal is to make a MSI-package for both of them. Normally this is not a big problem, but in our case the files used in debug does not have the same name as in the release build. Is it possible to solve this in a

Re: [WiX-users] If-statements?

2006-10-23 Thread Stefan Pavlik
Hi ,... I am using preprocessor variables for the same purpose. In the begining of my wxs file there is definition of variables: ?ifdef RELEASE ? ?define DebugReleaseDir=Release ? ?else ? ?define DebugReleaseDir=Debug ? ?endif ? The file is compiled with command line candle.exe