garyM
garyM

Reputation: 892

WIX: How can I queue custom action between "after InstallFile" and "before "XMLFile" ?

I have a custom action that dynamically generates an XML file based on installed files (can't change this utility). The custom action must execute after "InstallFiles".

I would like to use XMLFile to make other modifications to the XML file based on other features installed.

Any suggestions on how to schedule custom action between "after=InstallFile" and "before "XMLFile" ?

Upvotes: 1

Views: 91

Answers (1)

Ashish Kamat
Ashish Kamat

Reputation: 587

You can do something like

<Custom action="CustomizingXMLData" after="InstallFiles">Condition</Custom>

<Custom action="XMLFile" after="CustomizingXMLData">Condition</Custom>

Upvotes: 1

Related Questions