Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-28 Thread Blair Murri
In your conditions you probably want to use VersionNT64, not anything from the preprocessor. The ?if…? is used to include/exclude WiX source code from your MSI/Bundle entirely. Blair From: StevenOgilvie Sent: ‎Monday‎, ‎January‎ ‎27‎, ‎2014 ‎7‎:‎27‎ ‎AM To: General discussion for

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-27 Thread StevenOgilvie
Blair/Rob is this statement correct: So are you saying I should use: ?if $(sys.BUILDARCH) = x64 ? and NOT ?if $(var.Platform) = x64 ? What about my wixlib where I have 2 files that have a 32 bit version and a 64 bit version what is the proper way to say 32 bit file install on a 32 bit OS and

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-25 Thread Steven Ogilvie
. Subject: Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file sys.BUILDARCH uses the value set via the MSBuild Platform property (x86 for 32-bit intel, etc.) automatically with recent releases of WiX. And most of the time you don’t need to set the Win64 attribute

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-24 Thread Steven Ogilvie
installing a 32/64 bit MSI using 1 product.wxs file sys.BUILDARCH uses the value set via the MSBuild Platform property (x86 for 32-bit intel, etc.) automatically with recent releases of WiX. And most of the time you don’t need to set the Win64 attribute because the same input (the -arch argument

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-23 Thread Steven Ogilvie
- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: January-22-14 6:17 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P] Classification: Public Sigh... thanks Carter! Just learning

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file

2014-01-23 Thread Blair Murri
sys.BUILDARCH uses the value set via the MSBuild Platform property (x86 for 32-bit intel, etc.) automatically with recent releases of WiX. And most of the time you don’t need to set the Win64 attribute because the same input (the -arch argument to candle) that sets the BUILDARCH value from the

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-23 Thread Blair Murri
and OS) Thanks, Steve -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: January-22-14 4:53 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file The link provided

[WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file

2014-01-22 Thread StevenOgilvie
Hello, I use 1 product.wxs file at build time, the project file has different configurations for X86 and X64 which allows me build 2 MSI's one for 32 bit and one for 64 bit. I have used these conditions but which one is correct? ?if $(sys.BUILDARCH) = x64 ? ?define Win=yes ? ?define

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file

2014-01-22 Thread Carter Young
See Here: http://stackoverflow.com/questions/18628790/build-wix-3-6-project-targeting-x64 Regarding Files below: Build Arch is used in the Development environment to override the Build Setting in VS. Platform is the one you'd use when creating the install condition, as that is the platform

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file

2014-01-22 Thread Phill Hogland
The link provided by eyoung100 was helpful to me in packaging some printer drivers, using a single MSI project with different build configurations to produce x86 and x64 packages. The bundle then includes both packages and installs the one which is appropriate for the architecture of the target

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-22 Thread Steven Ogilvie
) Thanks, Steve -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: January-22-14 4:53 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file The link provided by eyoung100 was helpful

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-22 Thread Carter Young
To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file The link provided by eyoung100 was helpful to me in packaging some printer drivers, using a single MSI project with different build configurations to produce

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-22 Thread Steven Ogilvie
: January-22-14 4:53 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file The link provided by eyoung100 was helpful to me in packaging some printer drivers, using a single MSI project with different build