Hello, I am using WiX along with VS2012. Let's say the files are like this:
Product.wxs: <Product ...> ... <UIRef Id="MyUI"> </Product> UI.wxs: <UI Id="MyUI"> </UI> InstallUISequence.wxs: <Fragment> <UI> <InstallUISequence> ... </InstallUISequence> </UI> </Fragment> InstallExecuteSequence.wxs <Fragment> <InstallExecuteSequence> ... </InstallExecuteSequence> </Fragment> I separated the last two parts of code into two files. It appears that they are not reflected in MSI package when I view it with Orca. To make it work, I had to put the <InstallUISequence> inside UI.wxs and InstallExecuteSequence inside Product element. For Binary elements I don't have to specifically refer it. It is recognized and used automatically. <Fragment> <Binary Id="CustomActionDLL" SourceFile="$(var.CustomActions.TargetDir)CustomActions.CA.dll" /> </Fragment> The question then is, what can be seperated into Fragment and what can not? Or if we put them in Fragment, how could we refer them in Product? Please share your ideas. Bo ------------------------------------------------------------------------------ Android apps run on BlackBerry 10 Introducing the new BlackBerry 10.2.1 Runtime for Android apps. Now with support for Jelly Bean, Bluetooth, Mapview and more. Get your Android app in front of a whole new audience. Start now. http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users