diff options
Diffstat (limited to 'src/ext/Bal/wixlib/bal.wixproj')
-rw-r--r-- | src/ext/Bal/wixlib/bal.wixproj | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/ext/Bal/wixlib/bal.wixproj b/src/ext/Bal/wixlib/bal.wixproj new file mode 100644 index 00000000..fdcc7475 --- /dev/null +++ b/src/ext/Bal/wixlib/bal.wixproj | |||
@@ -0,0 +1,36 @@ | |||
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 | <Project Sdk="WixToolset.Sdk" ToolsVersion="4.0"> | ||
3 | <PropertyGroup> | ||
4 | <OutputType>Library</OutputType> | ||
5 | <BindFiles>true</BindFiles> | ||
6 | <Cultures>en-us</Cultures> | ||
7 | </PropertyGroup> | ||
8 | <ItemGroup> | ||
9 | <BindInputPaths Include="..\wixstdba\Resources\" /> | ||
10 | <BindInputPaths Include="$(OutputPath)netcoreapp3.1" /> | ||
11 | <BindInputPaths Include="$(OutputPath)net20" /> | ||
12 | <BindInputPaths Include="$(OutputPath)x86" BindName="x86" /> | ||
13 | <BindInputPaths Include="$(OutputPath)x64" BindName="x64" /> | ||
14 | <BindInputPaths Include="$(OutputPath)arm64" BindName="arm64" /> | ||
15 | </ItemGroup> | ||
16 | <ItemGroup> | ||
17 | <ProjectReference Include="..\dnchost\dnchost.vcxproj" Properties="Platform=ARM64" /> | ||
18 | <ProjectReference Include="..\mbahost\mbahost.vcxproj" Properties="Platform=ARM64" /> | ||
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" /> | ||
26 | </ItemGroup> | ||
27 | <ItemGroup> | ||
28 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> | ||
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> | ||
36 | </Project> \ No newline at end of file | ||