I'm developing an installer that has some Windows and iOS features. Till now we don't have a specific installer for iOS, so we develop a regular Windows installer and then copy the iOS files to a Mac computer.
I have an iOS file that ahs the following details:
File type: iOS File
Attributes: AI
So I create my WiX file and harvest that specific file. When I install my package and look at this specific file details, they change a little bit... After installation it looks like this:
File type: iOS File
Attributes: A
It looses the I
part, and it's not working. Following this link, the A = Archived
and the I=Indexed
, so my file is loosing its indexed part and not working.
Using WiX, it is being installed as a regular file:
<Component Id="cmp02966D4702C4F3FFBDF68F2A392C52F9" Directory="dir354E18D7AD4B72C9165606D96AE25DAB" Guid="2AC77104-550F-4E55-9CCC-95F89C8A6545">
<File Id="filA16E0AF72FB4B00DBBD98D3274DD7C86" KeyPath="yes" Source="$(var.sourceFolder)bin\$(var.ios)\Assemblies\Packages.ios.framework\Versions\A\Packages.ios" />
</Component>
So... Is there any way using WiX in which I can install my file and keep that index?
NOTE: This file is an indexed file coming from another shortcut (which I have also problems to copy...).