diff options
author | Bob Arnson <bob@joyofsetup.com> | 2020-06-30 13:57:34 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-06-30 14:01:28 -0400 |
commit | 7f7545f382bb9b885c9bfe894c51e66b443cef25 (patch) | |
tree | 4253e64ff3b67610bf7a08fb1585b871164c3598 | |
parent | cc20def99bbd0b28f19d90aee50d67f674738505 (diff) | |
download | wix-7f7545f382bb9b885c9bfe894c51e66b443cef25.tar.gz wix-7f7545f382bb9b885c9bfe894c51e66b443cef25.tar.bz2 wix-7f7545f382bb9b885c9bfe894c51e66b443cef25.zip |
Fix bind paths.
-rw-r--r-- | src/wixlib/util.wixproj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wixlib/util.wixproj b/src/wixlib/util.wixproj index 82b06c00..a4d7d16f 100644 --- a/src/wixlib/util.wixproj +++ b/src/wixlib/util.wixproj | |||
@@ -8,9 +8,9 @@ | |||
8 | 8 | ||
9 | <ItemGroup> | 9 | <ItemGroup> |
10 | <BindInputPaths Include="$(OutputPath)Win32" BindName='x86' /> | 10 | <BindInputPaths Include="$(OutputPath)Win32" BindName='x86' /> |
11 | <BindInputPaths Include="$(OutputPath)x64)" BindName='x64' /> | 11 | <BindInputPaths Include="$(OutputPath)x64" BindName='x64' /> |
12 | <BindInputPaths Include="$(OutputPath)arm)" BindName='arm' /> | 12 | <BindInputPaths Include="$(OutputPath)arm" BindName='arm' /> |
13 | <BindInputPaths Include="$(OutputPath)arm64)" BindName='arm64' /> | 13 | <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' /> |
14 | </ItemGroup> | 14 | </ItemGroup> |
15 | 15 | ||
16 | <ItemGroup> | 16 | <ItemGroup> |