Skip to main content

max / audiofiles

2.4 KB · 60 lines History Blame Raw
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 AudioFiles MSI source. Consumed by build-msi-native.ps1 (windows-x86, native
4 WiX toolset) and build-msi.sh (macOS/Linux fallback via msitools wixl).
5
6 Tokens replaced at build time:
7 @VERSION@ — semver from crates/audiofiles-app/Cargo.toml, with ".0" suffix
8 (WiX requires four-part version)
9 -->
10 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
11 <Product Id="*"
12 Name="AudioFiles"
13 Language="1033"
14 Version="@VERSION@"
15 Manufacturer="Maxwell Johnson"
16 UpgradeCode="8B4D5A2E-7F3C-4E1A-9D6B-2C8A4F5E7D9B">
17
18 <Package InstallerVersion="200"
19 Compressed="yes"
20 InstallScope="perUser"
21 Description="AudioFiles @VERSION@"
22 Comments="Sample manager with content-addressed storage" />
23
24 <MajorUpgrade DowngradeErrorMessage="A newer version is already installed." />
25 <MediaTemplate EmbedCab="yes" />
26
27 <Directory Id="TARGETDIR" Name="SourceDir">
28 <Directory Id="LocalAppDataFolder">
29 <Directory Id="INSTALLFOLDER" Name="AudioFiles">
30 <Component Id="MainExecutable" Guid="*">
31 <File Id="AudioFilesExe"
32 Source="AudioFiles.exe"
33 KeyPath="yes" />
34 </Component>
35 </Directory>
36 </Directory>
37 <Directory Id="ProgramMenuFolder">
38 <Component Id="StartMenuShortcut" Guid="*">
39 <Shortcut Id="AudioFilesShortcut"
40 Name="AudioFiles"
41 Target="[INSTALLFOLDER]AudioFiles.exe"
42 WorkingDirectory="INSTALLFOLDER" />
43 <RegistryValue Root="HKCU"
44 Key="Software\AudioFiles"
45 Name="installed"
46 Type="integer"
47 Value="1"
48 KeyPath="yes" />
49 <RemoveFolder Id="RemoveStartMenu" On="uninstall" />
50 </Component>
51 </Directory>
52 </Directory>
53
54 <Feature Id="Complete" Title="AudioFiles" Level="1">
55 <ComponentRef Id="MainExecutable" />
56 <ComponentRef Id="StartMenuShortcut" />
57 </Feature>
58 </Product>
59 </Wix>
60