I have the following fragment in my WiX 2 installer:

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>
  <Fragment Id='NoRegisterSequenceFragment'>
    <InstallExecuteSequence>
      <RegisterProduct Suppress="yes" />
      <RegisterUser Suppress="yes" />
      <PublishProduct Suppress="yes" />
      <PublishFeatures Suppress="yes" />
    </InstallExecuteSequence>

    <AdvertiseExecuteSequence>
      <PublishProduct Suppress="yes" />
      <PublishFeatures Suppress="yes" />
    </AdvertiseExecuteSequence>
  </Fragment>
</Wix>
  

In my main .wxs file, I used a FragmentRef to pull in these sequences. That
won't work, of course, on WiX 3. So what do I do? There's no
InstallExecuteSequenceRef that I can find.

Thanks for any suggestions,

-Chris




-------------------------------------------------------------------------
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