diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 12:51:21 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 13:33:18 -0600 |
commit | b9ba35486245a65cd8e376cc7a808f6fa7d41682 (patch) | |
tree | 93304a7be837c3c6ec32c46a7d04ecf580e67407 /src/wixlib | |
parent | 70e370b4494a87cbbe234130882cad4a1021f82a (diff) | |
download | wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.tar.gz wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.tar.bz2 wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.zip |
WIXFEAT:6209 - Add x64 and ARM64 versions of built-in BAs.
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/bal.wixproj | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/src/wixlib/bal.wixproj b/src/wixlib/bal.wixproj index 38cdf242..8c88c3ce 100644 --- a/src/wixlib/bal.wixproj +++ b/src/wixlib/bal.wixproj | |||
@@ -9,14 +9,28 @@ | |||
9 | <BindInputPaths Include="..\wixstdba\Resources\" /> | 9 | <BindInputPaths Include="..\wixstdba\Resources\" /> |
10 | <BindInputPaths Include="$(OutputPath)netcoreapp3.0" /> | 10 | <BindInputPaths Include="$(OutputPath)netcoreapp3.0" /> |
11 | <BindInputPaths Include="$(OutputPath)" /> | 11 | <BindInputPaths Include="$(OutputPath)" /> |
12 | <BindInputPaths Include="$(OutputPath)Win32" BindName="x86" /> | 12 | <BindInputPaths Include="$(OutputPath)x86" BindName="x86" /> |
13 | <BindInputPaths Include="$(OutputPath)x64" BindName="x64" /> | ||
14 | <BindInputPaths Include="$(OutputPath)arm64" BindName="arm64" /> | ||
13 | </ItemGroup> | 15 | </ItemGroup> |
14 | <ItemGroup> | 16 | <ItemGroup> |
15 | <ProjectReference Include="..\dnchost\dnchost.vcxproj" /> | 17 | <ProjectReference Include="..\dnchost\dnchost.vcxproj" Properties="Platform=ARM64" /> |
16 | <ProjectReference Include="..\mbahost\mbahost.vcxproj" /> | 18 | <ProjectReference Include="..\mbahost\mbahost.vcxproj" Properties="Platform=ARM64" /> |
17 | <ProjectReference Include="..\wixstdba\wixstdba.vcxproj" /> | 19 | <ProjectReference Include="..\wixstdba\wixstdba.vcxproj" Properties="Platform=ARM64" /> |
20 | <ProjectReference Include="..\dnchost\dnchost.vcxproj" Properties="Platform=x86" /> | ||
21 | <ProjectReference Include="..\mbahost\mbahost.vcxproj" Properties="Platform=x86" /> | ||
22 | <ProjectReference Include="..\wixstdba\wixstdba.vcxproj" Properties="Platform=x86" /> | ||
23 | <ProjectReference Include="..\dnchost\dnchost.vcxproj" Properties="Platform=x64" /> | ||
24 | <ProjectReference Include="..\mbahost\mbahost.vcxproj" Properties="Platform=x64" /> | ||
25 | <ProjectReference Include="..\wixstdba\wixstdba.vcxproj" Properties="Platform=x64" /> | ||
18 | </ItemGroup> | 26 | </ItemGroup> |
19 | <ItemGroup> | 27 | <ItemGroup> |
20 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> | 28 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> |
21 | </ItemGroup> | 29 | </ItemGroup> |
30 | <!-- Workaround for bug in ProjectReferenceDefineConstants, they're not needed for this project anyway --> | ||
31 | <Target Name="ClearProjectReferenceDefineConstants" AfterTargets="CalculateDefineConstants"> | ||
32 | <PropertyGroup> | ||
33 | <ProjectReferenceDefineConstants></ProjectReferenceDefineConstants> | ||
34 | </PropertyGroup> | ||
35 | </Target> | ||
22 | </Project> \ No newline at end of file | 36 | </Project> \ No newline at end of file |