[WiX-users] platform agnostic file flag?

2009-01-27 Thread Peter Oehlert
I'm doing dual x64/x86 installers and my application is all based on .net (MSIL) and is hence platform agnostic. Is there a way to specify a file as platform agnostic in a component? Currently my x64 installer is putting everything in Program Files (x86) b/c I don't specify the Platform= attribute

Re: [WiX-users] platform agnostic file flag?

2009-01-27 Thread Christopher Karper
MSI requires that the installer be marked as 32-bit or 64-bit.I just made one WXS file that will work for both, then I set my target directory to the correct place for that platform. Chris On Tue, Jan 27, 2009 at 3:09 PM, Peter Oehlert poehl...@securityinnovation.com wrote: I'm doing dual

Re: [WiX-users] platform agnostic file flag?

2009-01-27 Thread Peter Oehlert
Karper [mailto:christopher.kar...@gmail.com] Sent: Tuesday, January 27, 2009 1:03 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] platform agnostic file flag? MSI requires that the installer be marked as 32-bit or 64-bit.I just made one WXS file

Re: [WiX-users] platform agnostic file flag?

2009-01-27 Thread Christopher Karper
. --Peter -Original Message- From: Christopher Karper [mailto:christopher.kar...@gmail.com] Sent: Tuesday, January 27, 2009 1:03 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] platform agnostic file flag? MSI requires that the installer

Re: [WiX-users] platform agnostic file flag?

2009-01-27 Thread Castro, Edwin (Hillsboro)
...@gmail.com] Sent: Tuesday, January 27, 2009 6:06 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] platform agnostic file flag? OK, here's how I handle that. Your directory structure should look something like this: Directory Id='TARGETDIR' Name='SourceDir

Re: [WiX-users] platform agnostic file flag?

2009-01-27 Thread Castro, Edwin (Hillsboro)
discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] platform agnostic file flag? I accomplished the same thing as follows: Directory Id=TARGETDIR Name=SourceDir ?if $(var.Platform) = x86 ? Directory Id=ProgramFilesFolder Directory Id=INSTALLLOCATION Name