-
Notifications
You must be signed in to change notification settings - Fork 0
/
PotatoDrive.wxs
34 lines (30 loc) · 1.3 KB
/
PotatoDrive.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?include PotatoDrive-vars.wxi?>
<Package
UpgradeCode="281d8029-ac78-4de4-848a-c5c01446b9f3"
Language="1033"
Manufacturer="Balázs Grill"
Name="PotatoDrive"
Version="$(var.ProductVersion)"
Scope="perMachine"
InstallerVersion="200">
<Icon Id="potato.ico" SourceFile="potato.ico"/>
<Property Id="ARPPRODUCTICON" Value="potato.ico" />
<Property Id="ARPNOREPAIR" Value="yes" Secure="yes" />
<Property Id="ARPNOMODIFY" Value="yes" Secure="yes" />
<MediaTemplate EmbedCab="yes" />
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<StandardDirectory Id="ProgramFiles64Folder">
<Directory Id="INSTALLFOLDER" Name="PotatoDrive">
<Component Id="PotatoDrive" Guid="5384ae16-4fe0-4fc0-820d-e27b95344479" Bitness="always64">
<File Source="potatodrive.exe"></File>
<File Source="potato.ico"></File>
</Component>
</Directory>
</StandardDirectory>
<Feature Id="PotatoDriveCoreFeature">
<ComponentRef Id="PotatoDrive" />
</Feature>
</Package>
</Wix>