Hello,

This may be a misunderstanding of how WiX is supposed to work. Basically...

I have a Fragment file, InstallExecuteSequence.wxs, that contains only an
InstallExecuteSequence node:
<InstallExecuteSequence>
  <Custom Action="SetProp1" Sequence="10"/>
</InstallExecuteSequence>

My problem is that this sequence doesn't by default get included within
anything I build. E.g.:
candle InstallExecuteSequence.wxs
candle SequenceTest.wxs (<= generated by Votive, with an appropriate
<CustomAction Id="SetProp1" ...> node).
light -out test.msi InstallExecuteSequence.wixobj SequenceTest.wixobj
+ look at test.msi in orca => InstallExecuteSequence table doesn't contain
the SetProp1 CA.

The workaround is easy enough: stick a dummy <CustomAction> inside
InstallExecuteSequence.wxs and a matching <CustomActionRef> in
SequenceTest.wxs, but does anyone know the proper way to get
InstallExecuteSequence.wixobj linked into test.msi, or am I missing
something..?

thanks for any help,
Karim
-- 
View this message in context: 
http://www.nabble.com/What%27s-the-right-way-to-use-InstallExecuteSequence-from-a-fragment--tf4698457.html#a13431009
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to