Re: [WiX-users] Creating MSI for 64bit machine

2009-12-30 Thread Blair
gmail.com] Sent: Tuesday, December 29, 2009 11:16 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Creating MSI for 64bit machine Thank you very for the quick reply Rob and Michael. I have a custom Action written in C# which is being used in the MSI. So do i need to build that custom

Re: [WiX-users] Creating MSI for 64bit machine

2009-12-29 Thread Sagar1111
Thank you very for the quick reply Rob and Michael. I have a custom Action written in C# which is being used in the MSI. So do i need to build that custom action separately for 32 bit and 64 bit and then use those specific "CA.dll" files for respective MSI -Sagar Rob Mensching-7 wrote: >

Re: [WiX-users] Creating MSI for 64bit machine

2009-12-29 Thread Michael Clark
MSI for 64bit machine Hi I want to develop a 64 bit MSI. I have already developed 32 bit MSI. But now if i had to modify it for 64 bit machine, what changes do i need to make? For eg:Package/@Platform , Component/@Win64, file/@ProcessorArchitecture or will candle -arch command build 64 bit MSI

Re: [WiX-users] Creating MSI for 64bit machine

2009-12-29 Thread Rob Mensching
candle -arch will switch the Package/@Platform to 64-bit. That's about all you need to do. Then you can mark Components/@Win64 as necessary. File/@ProcessorArchitecture probably won't be needed. Play with it a little bit, that tends to help a lot. On Tue, Dec 29, 2009 at 6:24 AM, Sagar wrote:

[WiX-users] Creating MSI for 64bit machine

2009-12-29 Thread Sagar1111
Hi I want to develop a 64 bit MSI. I have already developed 32 bit MSI. But now if i had to modify it for 64 bit machine, what changes do i need to make? For eg:Package/@Platform , Component/@Win64, file/@ProcessorArchitecture or will candle -arch command build 64 bit MSI for me? I am pretty muc