wixでカスタムアクションの順番の制御

wxsファイルの内に追加するカスタムアクションを記載していきますが、実行させる順番はBeforeやAfterタグを使って相対的に順番を決めます。

<InstallExecuteSequence>
<Custom Action="afterinstallfiles" After="InstallFiles" >NOT Installed</Custom>
<Custom Action="testAction" Before="afterinstallfiles" >NOT Installed</Custom>
</InstallExecuteSequence>


上記の用に設定すると、InstallFiles実行後にカスタムアクションとして定義したtestActionが実行され、afterinstallfilesが実行されます。