<?xml version="1.0"?>
<!--
VirtualBox Windows Installation Script (WiX)
Copyright (C) 2006-2014 Oracle Corporation
This file is part of VirtualBox Open Source Edition (OSE), as
available from http://www.virtualbox.org. This file is free software;
General Public License (GPL) as published by the Free Software
Foundation, in version 2 as it comes in the "COPYING" file of the
VirtualBox OSE distribution. VirtualBox OSE is distributed in the
hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
-->
<?include Properties.wxi ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
<!-- Note: GUIDs in WiX *must* be uppercase! -->
<!-- Always include an upgrade ID or otherwise upgrade installation will not be possible. When doing
a major upgrade (more than just fixing a few files) change the product GUID. We always do a major
upgrade even for minor VBox updates. For that only change the product ID and the product version.
The upgrade code *never* must be changed! -->
<!-- Update / Upgrade policies:
Update Type Package Code Product Version Product Code Upgrade Code
Small update change don't change don't change don't change
Minor update change change don't change don't change
Major upgrade change change change don't change -->
<!-- Old product ID: <Product Id="B59FE77B-738F-4f1c-AB48-3104895AF676"
Old upgrade code of innotek: UpgradeCode="F5FFAEBF-97AE-4038-8F91-4DE719456127" -->
<Module Id="msm_VBoxApp"
Version="$(var.Property_Version)">
<Package Id="d255feb6-597d-4f49-a170-e34f289fa0d3"
Keywords="Installer, Setup"
Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) installation package"
Comments="$(env.VBOX_PRODUCT) installation package"
Manufacturer="$(env.VBOX_VENDOR)"
InstallerVersion="200"
AdminImage="yes"
InstallPrivileges="elevated"
Platform="$(var.Property_Platform)"
SummaryCodepage="1252"/>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="msm_VBoxApplicationFolder" FileSource=".">
<?include VBoxMergeApp.wxi ?>
</Directory> <!-- msm_VBoxApplicationFolder directory -->
</Directory> <!-- TARGETDIR -->
<!-- Custom actions -->
<?include VBoxMergeAppCA.wxi ?>
<InstallExecuteSequence>
<?include VBoxMergeAppSeq.wxi ?>
</InstallExecuteSequence>
</Module>
</Wix>