wixtoolset / issues

WiX Toolset Issues Tracker
http://wixtoolset.org/
129 stars 24 forks source link

Wix Convert doesn't convert custom scheduling of WixCloseApplications #7018

Closed MBroholmA closed 1 year ago

MBroholmA commented 1 year ago

We have this fragment to reschedule the action:

    <InstallExecuteSequence>
      <Custom Action="WixCloseApplications" Before="StopServices" />
    </InstallExecuteSequence>
barnson commented 1 year ago

The converter can't convert the custom action id because it's dependent on the build platform. The default scheduling correctly handles the prefix and suffix but when you override the scheduling, you'll have to handle that manually (for now, at least).

I'll add an appropriate warning to the converter.