forked from BornToBeRoot/NETworkManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.wxs
More file actions
30 lines (24 loc) · 1.2 KB
/
Copy pathPackage.wxs
File metadata and controls
30 lines (24 loc) · 1.2 KB
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
<Wix xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"
xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?define ProductVersion="0.0.0" ?>
<Package Name="NETworkManager 20$(var.ProductVersion).0"
Manufacturer="BornToBeRoot"
Version="$(var.ProductVersion)"
UpgradeCode="e343d8ab-ed71-41d1-9784-6f6860bda078">
<MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)"/>
<!-- Include CAB file in MSI -->
<MediaTemplate EmbedCab="true"/>
<!-- Icon -->
<Icon Id="icon.ico" SourceFile="$(var.NETworkManager.ProjectDir)NETworkManager.ico"/>
<Property Id="ARPPRODUCTICON" Value="icon.ico"/>
<!-- UI -->
<WixVariable Id="WixUILicenseRtf" Value="$(var.ProjectDir)Resources\LICENSE.rtf"/>
<WixVariable Id="WixUIBannerBmp" Value="$(var.ProjectDir)Resources\WixUIBanner.png"/>
<WixVariable Id="WixUIDialogBmp" Value="$(var.ProjectDir)Resources\WixUIDialog.png"/>
<ui:WixUI Id="WixUI_InstallDir" InstallDirectory="INSTALLFOLDER"/>
<!-- Features -->
<Feature Id="Main" Title="NETworkManager">
<ComponentGroupRef Id="Components"/>
</Feature>
</Package>
</Wix>