70 lines
3.5 KiB
XML
70 lines
3.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
|
|
<Package Language="1033"
|
|
Manufacturer="Syng.Rocks!"
|
|
Name="Syng"
|
|
Scope="perUserOrMachine"
|
|
UpgradeCode="092e7e0b-5042-47a1-9673-544d9722f8df"
|
|
ProductCode="*"
|
|
Version="2.1.0">
|
|
<MediaTemplate EmbedCab="yes" />
|
|
<MajorUpgrade DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />
|
|
<Property Id="INSTALLDESKTOPSHORTCUT" Value="0"/>
|
|
<UI>
|
|
<ui:WixUI Id="WixUI_InstallDir" InstallDirectory="INSTALLFOLDER" />
|
|
<ui:WixUIDialog Id="ExitDialog">
|
|
<Control Id="DesktopShortcutCheckbox" Type="CheckBox" X="15" Y="180" Width="320" Height="17"
|
|
Property="INSTALLDESKTOPSHORTCUT" CheckBoxValue="1" Text="Create a desktop shortcut"/>
|
|
</ui:WixUIDialog
|
|
</UI>
|
|
<WixVariable Id="WixUILicenseRtf" Value="agpl-3.0.rtf" />
|
|
<Icon Id="syng.ico" SourceFile="..\syng.ico"/>
|
|
<Property Id="ARPPRODUCTICON" Value="syng.ico" />
|
|
<StandardDirectory Id="ProgramFilesFolder">
|
|
<Directory Id="INSTALLFOLDER" Name="syng">
|
|
<Component Id="ProductComponent">
|
|
<File KeyPath="yes" Source="syng\syng.exe" Name="syng.exe"></File>
|
|
<Shortcut Id="startmenuShortcut"
|
|
Directory="ProgramMenuDir"
|
|
Name="Syng Karaoke Player"
|
|
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" />
|
|
</Component>
|
|
<Directory Id="DataDir" Name="data">
|
|
</Directory>
|
|
</Directory>
|
|
</StandardDirectory>
|
|
<ComponentGroup Id="DataFiles" Directory="DataDir">
|
|
<Files Include="syng\data\**">
|
|
<Exclude Files="syng\syng.exe" />
|
|
</Files>
|
|
</ComponentGroup>
|
|
<Component Id="DesktopShortcut">
|
|
<Shortcut Id="desktopShortcut"
|
|
Directory="DesktopFolder"
|
|
Name="Syng Karaoke Player"
|
|
WorkingDirectory='INSTALLFOLDER'
|
|
Icon="syng.ico"
|
|
IconIndex="0"
|
|
Advertise="yes" />
|
|
<RegistryValue Root="HKCU" Key="Software\rocks.syng.Syng" Name="Installed" Type="integer" Value="1" KeyPath="yes"/>
|
|
<Condition><![CDATA[INSTALLDESKTOPSHORTCUT=1]]></Condition>
|
|
</Component>
|
|
<StandardDirectory Id="ProgramMenuFolder">
|
|
<Directory Id="ProgramMenuDir" Name="syng"/>
|
|
</StandardDirectory>
|
|
<StandardDirectory Id="DesktopFolder"/>
|
|
<Feature Id="syng">
|
|
<ComponentRef Id="ProductComponent" />
|
|
<ComponentGroupRef Id="DataFiles" />
|
|
<Condition Level="1"><![CDATA[INSTALLDESKTOPSHORTCUT=1]]></Condition>
|
|
<ComponentRef Id="DesktopShortcut"/>
|
|
</Feature></Package>
|
|
</Wix>
|