Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-18 Thread Romeo Salayo Jr.
I have found a solution using MSBuild by inserting Win64="yes" on every components generated by Heat. Thanks anyway... Regards, Romeo Bob Arnson-6 wrote: > > Romeo Salayo Jr. wrote: >> I having the same problem, I need to create a 32 and 64bit installers >> automatically with a single source

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread Bob Arnson
Romeo Salayo Jr. wrote: > I having the same problem, I need to create a 32 and 64bit installers > automatically with a single source file. The problem is that one fragment of > our source was generated by heat.exe every time we build. The question is, > is it possible to generate 64bit component us

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread Christopher Karper
If you're using Votive, you can just omit this attribute entirely and just use the x86/x64 configurations to build... On Tue, Mar 17, 2009 at 9:29 AM, troy hostetter wrote: > Getting a type mismatch on this: > > Win64="$(loc.Win64)" > > Here's the error: > > Error407The Component/@Win64 a

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread troy hostetter
Getting a type mismatch on this: Win64="$(loc.Win64)" Here's the error: Error407The Component/@Win64 attribute's value, '$(loc.Win64)', is not a legal yes/no value. The only legal values are 'no' and 'yes'. - Troy On Mon, Mar 16, 2009 at 8:53 PM, Bob Arnson wrote: > troy hostetter w

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-17 Thread Romeo Salayo Jr.
Hi, I having the same problem, I need to create a 32 and 64bit installers automatically with a single source file. The problem is that one fragment of our source was generated by heat.exe every time we build. The question is, is it possible to generate 64bit component using heat so that we can au

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-16 Thread Bob Arnson
troy hostetter wrote: > Struggling here. These two WiX configurations are throwing build errors. What errors? > First configuration .. getting end tag errors: > The text between and must be valid XML; it's not legal to conditionalize just the start tag of an element. > Second configura

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-16 Thread troy hostetter
Bob - Struggling here. These two WiX configurations are throwing build errors. I don't want to create 2 separate component defs for x86 and x64. Please help :) First configuration .. getting end tag errors:

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-14 Thread Bob Arnson
troy hostetter wrote: > Are there any recommendations on how to easily switch between x86 and x64 > when building the MSI? > Use the InstallerPlatform property; it automatically sets the default for Package and Component. Use preprocessor to handle directories. -- sig://boB http://joyofsetup

Re: [WiX-users] Creating x86 and x64 MSIs

2009-03-13 Thread troy hostetter
Hmm... Ran across thisafter I fired off the email. If anybody has other ideas, or links to them, please forward. Thanks, - Troy On Fri, Mar 13, 2009 at 12:28 PM, troy hostetter wrote: > Are there any recommendations on how to easil