diff options
author | Bob Arnson <bob@firegiant.com> | 2022-02-10 00:38:43 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2022-02-10 13:17:31 -0500 |
commit | 091573d459d6ab4947bd39bd3bc8faee3d18b4fc (patch) | |
tree | 88bf9f32b63ad7173189ced351129d41596dd043 /src/ext/Http/wixlib/caDecor.wxi | |
parent | 652719fc9d4a6afc9fb016d2d379a04c0bf40e04 (diff) | |
download | wix-091573d459d6ab4947bd39bd3bc8faee3d18b4fc.tar.gz wix-091573d459d6ab4947bd39bd3bc8faee3d18b4fc.tar.bz2 wix-091573d459d6ab4947bd39bd3bc8faee3d18b4fc.zip |
Central caDecor and caErr.
Diffstat (limited to 'src/ext/Http/wixlib/caDecor.wxi')
-rw-r--r-- | src/ext/Http/wixlib/caDecor.wxi | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/ext/Http/wixlib/caDecor.wxi b/src/ext/Http/wixlib/caDecor.wxi deleted file mode 100644 index b1711518..00000000 --- a/src/ext/Http/wixlib/caDecor.wxi +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | <!-- 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. --> | ||
2 | |||
3 | |||
4 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?ifdef Prefix ?> | ||
6 | <?undef Prefix ?> | ||
7 | <?endif?> | ||
8 | |||
9 | <?define Prefix="Wix4" ?> | ||
10 | |||
11 | <?ifndef platform ?> | ||
12 | <?define platform="x86" ?> | ||
13 | <?endif?> | ||
14 | |||
15 | <?if $(var.platform)="" ?> | ||
16 | <?undef platform ?> | ||
17 | <?define platform="x86" ?> | ||
18 | <?endif?> | ||
19 | |||
20 | <?ifdef Suffix ?> | ||
21 | <?undef Suffix ?> | ||
22 | <?endif?> | ||
23 | |||
24 | <?if $(var.platform)~="x86" ?> | ||
25 | <?define Suffix="_X86" ?> | ||
26 | <?endif?> | ||
27 | |||
28 | <?if $(var.platform)~="x64" ?> | ||
29 | <?define Suffix="_X64" ?> | ||
30 | <?endif?> | ||
31 | |||
32 | <?if $(var.platform)~="arm" ?> | ||
33 | <?define Suffix="_A32" ?> | ||
34 | <?endif?> | ||
35 | |||
36 | <?if $(var.platform)~="arm64" ?> | ||
37 | <?define Suffix="_A64" ?> | ||
38 | <?endif?> | ||
39 | </Include> | ||