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-11-07 10:05:59 +01:00
<Product Name="Safe Exam Browser ($(var.Platform))" Manufacturer="ETH Zürich" Language="1033" Codepage="1252"
2019-07-26 12:58:07 +02:00
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-08-08 07:55:05 +02:00
<Icon Id="ConfigurationToolIcon" SourceFile="Resources\ConfigurationTool.ico" />
2020-03-16 15:25:49 +01:00
<Icon Id="ResetUtilityIcon" SourceFile="Resources\ResetUtility.ico" />
2019-07-25 11:29:40 +02:00
<Property Id="ARPPRODUCTICON" Value="ApplicationIcon" />
2021-04-14 17:33:24 +02:00
<Property Id="WIXUI_EXITDIALOGOPTIONALTEXT" Value="PLEASE NOTE: In order to run SEB, you first need to install all the required dependencies as specified under https://github.com/SafeExamBrowser/seb-win-refactoring#readme." />
2019-07-26 09:47:14 +02:00
<WixVariable Id="WixUILicenseRtf" Value="Resources\License.rtf" />
2020-05-12 12:42:55 +02:00
<WixVariable Id="WixUIBannerBmp" Value="Resources\Banner.bmp" />
<WixVariable Id="WixUIDialogBmp" Value="Resources\Dialog.bmp" />
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>
2019-08-09 11:54:24 +02:00
<InstallExecuteSequence>
<Custom Action="LegacyCleanupAction" After="RemoveFiles" />
</InstallExecuteSequence>
2019-07-25 11:29:40 +02:00
</Product>
</Wix>