I am harvesting a directory using WiX Heat, but I need to reference one of the subdirectories that is harvested in another part of my installer. The problem is that the subdirectories generated by Heat have random Ids assigned to them, so I don't know the Id that I need to reference
...
<Directory Id="dirEF1CC7518E38625D204F4AB4474A284C" Name="folderIWantToReference">
...
The subdirectory will always be in the directory that I'm harvesting with Heat
Is there a way to force Heat to use consistent Ids at least for the folders that I need to reference, or is there a way to find an Id
of a Directory
based on Name
?