-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.wxs
61 lines (50 loc) · 2.16 KB
/
fonts.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id='f10f208e-aa19-4186-8d80-214929e2b007'
Name='$(var.ProductName) $(var.ProductVersion)'
Language='1033'
Version='$(var.ProductVersion)'
Manufacturer='$(var.ProductName)'
UpgradeCode='6300fb1e-9b29-4e51-8036-63b741de5e91'>
<Package Description='$(var.ProductName) $(var.ProductVersion)'
Comments='$(var.ProductName) $(var.ProductVersion)'
Manufacturer='$(var.ProductName)'
InstallerVersion='200'
Compressed='yes'
Keywords='soubory'
InstallScope='perMachine' />
<InstallExecuteSequence>
<RemoveExistingProducts After="InstallInitialize" />
<Custom Action="SetARPINSTALLLOCATION" After="InstallValidate" />
</InstallExecuteSequence>
<Upgrade Id='6300fb1e-9b29-4e51-8036-63b741de5e91'>
<UpgradeVersion OnlyDetect='no'
Property='PREVIOUSFOUND'
Minimum='12.11.19'
IncludeMinimum='yes'
Maximum='$(var.ProductVersion)'
IncludeMaximum='no' />
</Upgrade>
<?include minimalui.wxs ?>
<UIRef Id="WixUI_Common" />
<WixVariable Id="WixUIBannerBmp" Value="img\top.jpg" />
<WixVariable Id="WixUIDialogBmp" Value="img\bg.jpg" />
<Icon Id="ProductIcon" SourceFile="img\app.ico"/>
<Property Id="ARPPRODUCTICON" Value="ProductIcon" />
<Property Id='ARPCOMMENTS' Value="$(var.ProductName) $(var.ProductVersion)" />
<Property Id='ARPCONTACT' Value="$(var.ProductName)" />
<Property Id='ARPHELPLINK' Value="$(var.ProductName)" />
<Property Id='ARPURLUPDATEINFO' Value="$(var.ProductName)" />
<Property Id='ARPHELPTELEPHONE' Value="+000 123 456 789" />
<Property Id='ARPREADME' Value="$(var.ProductName)" />
<Property Id='ARPURLINFOABOUT' Value="$(var.ProductName)" />
<Feature Id='main' Title='fonty' Description='$(var.ProductName) $(var.ProductVersion)' Level='1'>
<?include components.wxs ?>
</Feature>
<Media Id='1' Cabinet='fonts.cab' EmbedCab='yes' CompressionLevel='high' />
<Directory Id='TARGETDIR' Name='SourceDir'>
<?include files.wxs ?>
</Directory>
<CustomAction Id="SetARPINSTALLLOCATION" Property="ARPINSTALLLOCATION" Value="[FontsFolder]" />
</Product>
</Wix>