Re: [WiX-users] Undefined preprocessor variable error message - how to get preprocessor variables working?

2011-08-19 Thread Brad Smith
Thanks for your help Kurt, it worked! -Original Message- From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com] Sent: Thursday, 18 August 2011 8:55 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Undefined preprocessor variable error message - how

Re: [WiX-users] Undefined preprocessor variable error message - how to get preprocessor variables working?

2011-08-18 Thread Kurt Jensen
If you add a reference to your WixExample01 project then you can use $(var.WixExample01.TargetFileName),etc throughout your WiX project -Original Message- From: Brad Smith [mailto:brads...@tpg.com.au] Sent: Thursday, August 18, 2011 6:38 AM To: wix-users@lists.sourceforge.net Subject: [WiX

Re: [WiX-users] Undefined preprocessor variable error

2010-06-22 Thread Blair
Or, if you wish to avoid extraneous ";" marks: ItemOne ItemTwo $(Property);ItemTwo -Blair -Original Message- From: Elfe Xu [mailto:elf...@microsoft.com] Sent: Tuesday, June 22, 2010 5:26 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Undefined pr

Re: [WiX-users] Undefined preprocessor variable error

2010-06-22 Thread Elfe Xu
Interesting. Why is the DefineConstants different with other element suche as Property? I have a file MyProj.WIX.targets, which is used by Setupx64.wixproj and Setupx86.wixproj. So I could not have my constants definitation partially in the WIX.targets and partially in the wixproj files, according

Re: [WiX-users] Undefined preprocessor variable error

2010-06-22 Thread Castro, Edwin G. (Hillsboro)
The last property definition wins (explaining why the BinDirRoot was undefined after the reload). You need to define all of your preprocessor variables, separated by semi-colons, in the same DefineConstants definition: BinDirRoot=$(BranchBinDirRoot);SourceDirRoot=$(BranchSourceDirRoot) Ed