mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
13 lines
573 B
XML
13 lines
573 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Fragment Id="CustomActions">
|
|
<CustomAction Id="CopyEx4" Script="vbscript">
|
|
<![CDATA[
|
|
MsgBox("Test")
|
|
]]>
|
|
</CustomAction>
|
|
|
|
<Binary Id="InstallEx4File" SourceFile="$(var.MtApiSetupActions.TargetDir)$(var.MtApiSetupActions.TargetName).CA.dll"/>
|
|
<CustomAction Id="InstallEx4FileAction" BinaryKey="InstallEx4File" DllEntry="InstallEx4File" Execute="immediate" Return="check"/>
|
|
</Fragment>
|
|
</Wix> |