2024-04-02 18:10:09 +08:00
|
|
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
|
|
|
<Fragment>
|
2024-04-03 14:27:35 +08:00
|
|
|
<?include ../Includes.wxi?>
|
2024-04-02 18:10:09 +08:00
|
|
|
|
2024-04-03 14:27:35 +08:00
|
|
|
<Binary Id="Custom_Actions_Dll" SourceFile="$(var.CustomActions.TargetDir)$(var.CustomActions.TargetName).dll" />
|
2024-04-02 18:10:09 +08:00
|
|
|
|
2024-04-03 14:27:35 +08:00
|
|
|
<CustomAction Id="CustomActionHello" DllEntry="CustomActionHello" Impersonate="yes" Execute="immediate" Return="ignore" BinaryRef="Custom_Actions_Dll"/>
|
2024-04-06 16:30:33 +08:00
|
|
|
<CustomAction Id="RemoveInstallFolder" DllEntry="RemoveInstallFolder" Impersonate="no" Execute="deferred" Return="ignore" BinaryRef="Custom_Actions_Dll"/>
|
2024-04-11 11:51:35 +08:00
|
|
|
<CustomAction Id="TerminateProcesses" DllEntry="TerminateProcesses" Impersonate="yes" Execute="immediate" Return="ignore" BinaryRef="Custom_Actions_Dll"/>
|
2024-04-02 18:10:09 +08:00
|
|
|
</Fragment>
|
|
|
|
</Wix>
|