1. CustomAction Directory attribute fix

This commit is contained in:
vadym 2022-11-30 22:34:18 +02:00
parent 3488992352
commit d6c27ef7af

View file

@ -304,15 +304,16 @@ cat > wix.xml << EOF
Event="DoAction"
Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>
</UI>
<WixVariable Id="WixUILicenseRtf" Value="${PKGLICENSEFILE}" />
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch RiV-mesh" />
<CustomAction Id="LaunchApplication"
ExeCommand="[MeshInstallFolder]mesh-ui.exe ui\index.html"
Directory="MeshInstallFolder"
ExeCommand="mesh-ui.exe ui\index.html"
Execute="immediate"
BinaryKey="WixCA"
Impersonate="yes"
Return="asyncNoWait"/>
<WixVariable Id="WixUILicenseRtf" Value="${PKGLICENSEFILE}" />
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch RiV-mesh" />
<!-- Step 3: Include the custom action -->
<Property Id="WixShellExecTarget" Value="[#MeshUI]" />