Re: [WiX-users] Question about shortcuts

2013-12-05 Thread Rob Mensching
Generally, I recommend pretending that TARGETDIR doesn't even exist. -Original Message- From: Phil Wilson [mailto:phildgwil...@gmail.com] Sent: Thursday, December 5, 2013 8:01 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Question about shor

Re: [WiX-users] Question about shortcuts

2013-12-05 Thread Blair Murri
Also large, complex programs place binaries in various different directories, so there can be no single convention as to the “install location” nor even a single “working directory” for those systems. As such, you are expected to establish your own conventions and stick to them as they apply to

Re: [WiX-users] Question about shortcuts

2013-12-05 Thread Phil Wilson
WorkingDirectory is just a name that is closer to the name in the MSI file's shortcut table - WkDir. It helps people see what's going on when the names are similar, that's my assumption why they are similar. INSTALLDIR is just a convention, TARGETDIR is the Windows Installer directory which is the

Re: [WiX-users] Question about shortcuts

2013-12-05 Thread Rob Mensching
1. Validation isn't possible because the WorkingDirectory attribute is a reference to a Property identifier (during CostFinalize all Directory Id's become accessible as Properties). Thus, you could have a custom action that sets INSTALLDIR that the WiX toolset cannot see and would be a false po