syng/resources/windows/syng.wxs

58 lines
2.7 KiB
Text
Raw Normal View History

2025-02-15 19:48:16 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2025-02-16 00:09:18 +01:00
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
2025-02-15 19:48:16 +01:00
<Package Language="1033"
Manufacturer="Syng.Rocks!"
2025-02-15 19:48:16 +01:00
Name="Syng"
Scope="perUserOrMachine"
UpgradeCode="092e7e0b-5042-47a1-9673-544d9722f8df"
ProductCode="*"
2025-02-15 19:48:16 +01:00
Version="2.1.0">
<MediaTemplate EmbedCab="yes" />
2025-02-15 19:48:16 +01:00
<MajorUpgrade DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />
2025-02-16 00:09:18 +01:00
<ui:WixUI Id="WixUI_InstallDir" InstallDirectory="INSTALLFOLDER" />
<WixVariable Id="WixUILicenseRtf" Value="agpl-3.0.rtf" />
2025-02-15 21:30:42 +01:00
<Icon Id="syng.ico" SourceFile="..\syng.ico"/>
2025-02-15 19:48:16 +01:00
<Property Id="ARPPRODUCTICON" Value="syng.ico" />
2025-02-15 20:11:40 +01:00
<StandardDirectory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="syng">
<Component Id="ProductComponent">
2025-02-15 20:38:28 +01:00
<File KeyPath="yes" Source="syng\syng.exe" Name="syng.exe"></File>
2025-02-15 20:11:40 +01:00
<Shortcut Id="startmenuShortcut"
Directory="ProgramMenuDir"
Name="syng"
WorkingDirectory='INSTALLFOLDER'
Icon="syng.ico"
IconIndex="0"
Advertise="yes" />
<Shortcut Id="UninstallProduct"
Name="Uninstall Syng"
Target="[SystemFolder]msiexec.exe"
Arguments="/x [ProductCode]"
Description="Uninstalls Syng" />
2025-02-15 20:11:40 +01:00
<Shortcut Id="desktopShortcut"
Directory="DesktopFolder"
Name="syng"
WorkingDirectory='INSTALLFOLDER'
Icon="syng.ico"
IconIndex="0"
Advertise="yes" />
</Component>
2025-02-15 21:20:00 +01:00
<Directory Id="DataDir" Name="data">
</Directory>
2025-02-15 20:11:40 +01:00
</Directory>
2025-02-15 19:48:16 +01:00
</StandardDirectory>
2025-02-15 21:20:00 +01:00
<ComponentGroup Id="DataFiles" Directory="DataDir">
<Files Include="syng\data\**">
2025-02-15 21:23:59 +01:00
<Exclude Files="syng\syng.exe" />
</Files>
2025-02-15 21:20:00 +01:00
</ComponentGroup>
2025-02-15 20:11:40 +01:00
<StandardDirectory Id="ProgramMenuFolder">
2025-02-15 19:48:16 +01:00
<Directory Id="ProgramMenuDir" Name="syng"/>
</StandardDirectory>
2025-02-15 19:48:16 +01:00
<StandardDirectory Id="DesktopFolder"/>
<Feature Id="syng">
<ComponentRef Id="ProductComponent" />
2025-02-15 21:20:00 +01:00
<ComponentGroupRef Id="DataFiles" />
2025-02-15 19:48:16 +01:00
</Feature></Package>
</Wix>