2019-07-25 11:29:40 +02:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
2019-07-26 12:58:07 +02:00
|
|
|
|
<Product Name="Safe Exam Browser" Manufacturer="ETH Zürich" Language="1033" Codepage="1252"
|
|
|
|
|
Id="*" Version="!(bind.fileVersion.MainExecutable)" UpgradeCode="97A8B13E-48FB-4BE1-A7C2-DD1863F95CCB">
|
2019-07-25 11:29:40 +02:00
|
|
|
|
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
|
|
|
|
|
<MediaTemplate EmbedCab="yes" />
|
|
|
|
|
<UIRef Id="WixUI_Minimal" />
|
|
|
|
|
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." AllowSameVersionUpgrades="yes" />
|
2019-07-30 15:45:20 +02:00
|
|
|
|
<Icon Id="ApplicationIcon" SourceFile="Resources\Application.ico" />
|
2019-07-25 11:29:40 +02:00
|
|
|
|
<Property Id="ARPPRODUCTICON" Value="ApplicationIcon" />
|
2019-07-26 09:47:14 +02:00
|
|
|
|
<WixVariable Id="WixUILicenseRtf" Value="Resources\License.rtf" />
|
|
|
|
|
<!-- <WixVariable Id="WixUIDialogBmp" Value="Resources\Dialog.bmp" /> 493 × 312 -->
|
|
|
|
|
<!-- <WixVariable Id="WixUIBannerBmp" Value="Resources\Banner.bmp" /> 493 × 58 -->
|
2019-07-25 11:29:40 +02:00
|
|
|
|
<Feature Id="ProductFeature" Title="Safe Exam Browser" Level="1">
|
|
|
|
|
<ComponentGroupRef Id="ApplicationComponents" />
|
2019-08-07 16:13:23 +02:00
|
|
|
|
<ComponentGroupRef Id="ConfigurationComponents" />
|
2019-07-26 16:13:57 +02:00
|
|
|
|
<ComponentGroupRef Id="ResetComponents" />
|
2019-07-31 09:51:06 +02:00
|
|
|
|
<ComponentGroupRef Id="ServiceComponents" />
|
2019-07-30 15:45:20 +02:00
|
|
|
|
<ComponentRef Id="ShortcutComponent" />
|
2019-07-25 11:29:40 +02:00
|
|
|
|
</Feature>
|
|
|
|
|
</Product>
|
|
|
|
|
</Wix>
|