mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-28 09:51:06 -06:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Product Id="01364590-a67d-47bb-9e79-804e35ebfdd5" Name="Setup" Language="1033" Codepage="Windows-1252" Version="1.0.0.0" UpgradeCode="01364590-a67d-47bb-9e79-804e25ebfdd4" Manufacturer="oleg.shilo">
|
|
<Package InstallerVersion="200" Compressed="yes" SummaryCodepage="Windows-1252" Languages="1033" />
|
|
<Media Id="1" Cabinet="Setup.cab" EmbedCab="yes" />
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
<Directory Id="ProgramFilesFolder" Name="ProgramFilesFolder">
|
|
<Directory Id="INSTALLDIR" Name="RunAppTest">
|
|
|
|
<Component Id="Component.readme.txt_288017929" Guid="01364590-a67d-47bb-9e79-804e4d1506e1">
|
|
<File Id="readme.txt_288017929" Source="readme.txt" />
|
|
</Component>
|
|
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<UI />
|
|
|
|
<CustomAction Id="MyAction" BinaryKey="MyAction_File" DllEntry="MyAction" Return="check" Execute="immediate" />
|
|
|
|
<Binary Id="MyAction_File" SourceFile="%this%.CA.dll" />
|
|
|
|
<Feature Id="Complete" Title="Complete" Absent="allow" Level="1">
|
|
<ComponentRef Id="Component.readme.txt_288017929" />
|
|
</Feature>
|
|
|
|
<InstallExecuteSequence>
|
|
<Custom Action="MyAction" After="InstallInitialize"> (NOT Installed) </Custom>
|
|
</InstallExecuteSequence>
|
|
|
|
</Product>
|
|
</Wix>
|
|
|