mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-08 15:14:09 -06:00
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Product Id="6f330b47-2577-43ad-1195-1861ca25889c" Name="Fake CRT" Language="1033" Codepage="Windows-1252" Version="1.0.0.0" UpgradeCode="6f330b47-2577-43ad-1195-1861ba25889b" Manufacturer="oleg.shilo">
|
|
<Package InstallerVersion="200" Compressed="yes" SummaryCodepage="Windows-1252" Languages="1033" />
|
|
<Media Id="1" Cabinet="Fake_CRT.cab" EmbedCab="yes" />
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
<Directory Id="INSTALLDIR" Name="ProgramFilesFolder">
|
|
|
|
<Component Id="Component.INSTALLDIR.EmptyDirectory" Guid="6f330b47-2577-43ad-1195-1861dc68777d" KeyPath="yes">
|
|
<CreateFolder />
|
|
<RemoveFolder Id="INSTALLDIR" On="uninstall" />
|
|
</Component>
|
|
|
|
</Directory>
|
|
|
|
<Component Id="TARGETDIR" Guid="6f330b47-2577-43ad-1195-18612df5f80e" KeyPath="yes">
|
|
<CreateFolder />
|
|
<RemoveFolder Id="TARGETDIR" On="uninstall" />
|
|
</Component>
|
|
|
|
</Directory>
|
|
|
|
<Feature Id="Complete" Title="Complete" Absent="allow" Level="1">
|
|
<ComponentRef Id="Component.INSTALLDIR.EmptyDirectory" />
|
|
<ComponentRef Id="TARGETDIR" />
|
|
</Feature>
|
|
|
|
</Product>
|
|
</Wix>
|
|
|