blob: b17115183abc46b698122714eae234030c9b8d7e (
plain)
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
|
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?ifdef Prefix ?>
<?undef Prefix ?>
<?endif?>
<?define Prefix="Wix4" ?>
<?ifndef platform ?>
<?define platform="x86" ?>
<?endif?>
<?if $(var.platform)="" ?>
<?undef platform ?>
<?define platform="x86" ?>
<?endif?>
<?ifdef Suffix ?>
<?undef Suffix ?>
<?endif?>
<?if $(var.platform)~="x86" ?>
<?define Suffix="_X86" ?>
<?endif?>
<?if $(var.platform)~="x64" ?>
<?define Suffix="_X64" ?>
<?endif?>
<?if $(var.platform)~="arm" ?>
<?define Suffix="_A32" ?>
<?endif?>
<?if $(var.platform)~="arm64" ?>
<?define Suffix="_A64" ?>
<?endif?>
</Include>
|