1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX), common properties (private).
|
---|
4 |
|
---|
5 | Copyright (C) 2014-2018 Oracle Corporation
|
---|
6 |
|
---|
7 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | available from http://www.alldomusa.eu.org. This file is free software;
|
---|
9 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | General Public License (GPL) as published by the Free Software
|
---|
11 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | -->
|
---|
15 |
|
---|
16 | <Include xmlns="http://schemas.microsoft.com/wix/2006/wix"
|
---|
17 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
18 |
|
---|
19 | <Property Id="VBOX_IS_WINDOW_10" >
|
---|
20 | <DirectorySearch Id="DirSearchForWindows10NtDll" Path="[SystemFolder]" >
|
---|
21 | <FileSearch Name="ntdll.dll" MinVersion="6.4.00000.0"/>
|
---|
22 | </DirectorySearch>
|
---|
23 | </Property>
|
---|
24 |
|
---|
25 | </Include>
|
---|
26 |
|
---|