[WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Robert O'Brien
Any tips on why the following xmlfile machine.config install changes are not working? I'm using the following component entries: util:XmlFile Id=AddBehaviorExtensionsEnableBizTalkHeaderInspector File=[NetFramework20ConfigDir]machine.config

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Robert O'Brien
Got this to work switching XmlFile entry for install pass to following XmlConfig entry. util:XmlConfig Id=AddBehaviorExtensionsEnableBizTalkHeaderInspector File=[NetFramework20ConfigDir]machine.config ElementPath=/configuration/system.serviceModel/extensions/behaviorExtensions

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Robert O'Brien
Btw - I was using initially using the following to arrive at my NetFramework20ConfigDir setting for use referencing machine.config file. registry search result. PropertyRef Id=NETFRAMEWORK20INSTALLROOTDIR / Directory Id=NETFRAMEWORK20INSTALLROOTDIR Directory Id=NetFramework20ConfigDir

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Rob Mensching
Sounds like a bug in the NETFRAMEWORK20INSTALLROOTDIR not following 64-bit correctly. -Original Message- From: Robert O'Brien [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2008 16:24 To: Robert O'Brien; 'General discussion for Windows Installer XML toolset.' Subject: Re:

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Robert O'Brien
The NetFxExtension.wxs contains the following for assignment of NETFRAMEWORK20INSTALLROOTDIR which I would expect to do the right thing for Target=X64 build output cases. Fragment Property Id=NETFRAMEWORK20INSTALLROOTDIR Secure=yes RegistrySearch

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Rob Mensching
No, the problem is that the RegistrySearch isn't set 64-bit. So it's always searching 32-bit. That's the bug. Can you file it? -Original Message- From: Robert O'Brien Sent: Monday, December 01, 2008 19:15 To: Rob Mensching; General discussion for Windows Installer XML toolset.

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Robert O'Brien
Bug Filed. For clarification how come my locally implemented identical registry search based property assignment, excerpt from earlier shown here, would be working in 64-bit installer usage? Property Id=NFX20INSTALLROOTDIR RegistrySearch Id=NfxInstallRootForNetfx20Search Type=raw

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Rob Mensching
Are you setting the platform on the command-line to candle? -Original Message- From: Robert O'Brien Sent: Monday, December 01, 2008 19:39 To: Rob Mensching; General discussion for Windows Installer XML toolset. Subject: RE: [WiX-users] any tips on why the following xmlfile machine.config

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Robert O'Brien
Not sure I'm just using standard issue file | new | wix project template generated wixproj to wrap build process with Build Configuration Platform=x64 enabled. -Original Message- From: Rob Mensching Sent: Monday, December 01, 2008 7:40 PM To: Robert O'Brien; General discussion for

Re: [WiX-users] any tips on why the following xmlfile machine.config install changes are not working

2008-12-01 Thread Rob Mensching
Yeah, the InstallerPlatform=$(InstallerPlatform) Is probably being set. You can see it as the -arch switch to candle. -Original Message- From: Robert O'Brien Sent: Monday, December 01, 2008 19:43 To: Rob Mensching; General discussion for Windows Installer XML toolset. Subject: