diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-19 19:56:38 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-19 22:06:52 -0600 |
commit | 045024c3b35e3bee44f33fbe0fb43a1704a18c5c (patch) | |
tree | 45ff5ac3671b0d94ad69ec2dd1562677571b2db7 /src/wixlib | |
parent | 5f00aece054d074fc651e542432f349e3055f582 (diff) | |
download | wix-045024c3b35e3bee44f33fbe0fb43a1704a18c5c.tar.gz wix-045024c3b35e3bee44f33fbe0fb43a1704a18c5c.tar.bz2 wix-045024c3b35e3bee44f33fbe0fb43a1704a18c5c.zip |
Add the missing x64 wxs files and update dependencies.
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/BalExtension_arm64.wxs | 7 | ||||
-rw-r--r-- | src/wixlib/BalExtension_x64.wxs | 7 | ||||
-rw-r--r-- | src/wixlib/bal.wixproj | 2 |
3 files changed, 15 insertions, 1 deletions
diff --git a/src/wixlib/BalExtension_arm64.wxs b/src/wixlib/BalExtension_arm64.wxs new file mode 100644 index 00000000..1b9e11d2 --- /dev/null +++ b/src/wixlib/BalExtension_arm64.wxs | |||
@@ -0,0 +1,7 @@ | |||
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 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?define platform=arm64 ?> | ||
6 | <?include BalExtension_platform.wxi ?> | ||
7 | </Wix> | ||
diff --git a/src/wixlib/BalExtension_x64.wxs b/src/wixlib/BalExtension_x64.wxs new file mode 100644 index 00000000..69a597ae --- /dev/null +++ b/src/wixlib/BalExtension_x64.wxs | |||
@@ -0,0 +1,7 @@ | |||
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 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?define platform=x64 ?> | ||
6 | <?include BalExtension_platform.wxi ?> | ||
7 | </Wix> | ||
diff --git a/src/wixlib/bal.wixproj b/src/wixlib/bal.wixproj index 8c88c3ce..ba1a2349 100644 --- a/src/wixlib/bal.wixproj +++ b/src/wixlib/bal.wixproj | |||
@@ -7,7 +7,7 @@ | |||
7 | </PropertyGroup> | 7 | </PropertyGroup> |
8 | <ItemGroup> | 8 | <ItemGroup> |
9 | <BindInputPaths Include="..\wixstdba\Resources\" /> | 9 | <BindInputPaths Include="..\wixstdba\Resources\" /> |
10 | <BindInputPaths Include="$(OutputPath)netcoreapp3.0" /> | 10 | <BindInputPaths Include="$(OutputPath)netcoreapp3.1" /> |
11 | <BindInputPaths Include="$(OutputPath)" /> | 11 | <BindInputPaths Include="$(OutputPath)" /> |
12 | <BindInputPaths Include="$(OutputPath)x86" BindName="x86" /> | 12 | <BindInputPaths Include="$(OutputPath)x86" BindName="x86" /> |
13 | <BindInputPaths Include="$(OutputPath)x64" BindName="x64" /> | 13 | <BindInputPaths Include="$(OutputPath)x64" BindName="x64" /> |