From: Scott S. <ss...@xe...> - 2007-01-19 19:15:50
|
Our dll's are strongly typed (I think that's what its called). So we can't have dll's of different versions talking to each other. What is the best way to apply a hotfix for when you only need to replace a couple files. We can rebuild the new dll's to be the same version as the old ones, but how do you get those to be updated? -----Original Message----- From: wix...@li... [mailto:wix...@li...] On Behalf Of Stefan Kuhr Sent: Friday, January 19, 2007 1:28 PM To: wix...@li... Subject: [WiX-users] Conditional start menu shortcut creation Hello everyone, I want to install both the x64 and the x86 version of an executable on the harddisk, no matter if the machine is x86 or x64. But I only want to create one start menu shortcut for the app, the one that is appropriate for the target OS where the msi gets installed. How Do I go about that? I tried this for the component, so the start menu entry for the x86 should not appear on x86, but unfortunately it appears anyway: <DirectoryRef Id=3D"INSTALLDIR"> <Component Id=3D'PnPMonComp' Guid=3D'???????????'> <File Id=3D'PnPMonEXE' Name=3D'PnPMon.exe' = LongName=3D'PnPMon.exe' DiskId=3D'1' Source=3D'PnPMon.exe' Vital=3D'yes'> <Shortcut Id=3D"startmenuPnPMon" Directory=3D"ProgramMenuDir" Name=3D"PnPMon"=20 LongName=3D"PnPMon" WorkingDirectory=3D'INSTALLDIR' Icon=3D"PnPMon.exe" IconIndex=3D"0"> <Condition Level=3D"0">NOT VersionNT64</Condition> </Shortcut> </File> </Component> </DirectoryRef> How can I create a start menu shortcut conditionally? Any help appreciated, --=20 Stefan Kuhr --=20 View this message in context: http://www.nabble.com/Conditional-start-menu-shortcut-creation-tf3041366 .html#a8453976 Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V _______________________________________________ WiX-users mailing list WiX...@li... https://lists.sourceforge.net/lists/listinfo/wix-users |