blob: 82b06c00bf62cf4d9475f9dda33e4c4d8b8b04b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!-- 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. -->
<Project Sdk="WixToolset.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<BindFiles>true</BindFiles>
</PropertyGroup>
<ItemGroup>
<BindInputPaths Include="$(OutputPath)Win32" BindName='x86' />
<BindInputPaths Include="$(OutputPath)x64)" BindName='x64' />
<BindInputPaths Include="$(OutputPath)arm)" BindName='arm' />
<BindInputPaths Include="$(OutputPath)arm64)" BindName='arm64' />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\be\utilbe.vcxproj" />
<ProjectReference Include="..\ca\utilca.vcxproj" Properties="Platform=ARM" />
<ProjectReference Include="..\ca\utilca.vcxproj" Properties="Platform=ARM64" />
<ProjectReference Include="..\ca\utilca.vcxproj" Properties="Platform=x86" />
<ProjectReference Include="..\ca\utilca.vcxproj" Properties="Platform=x64" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="All" />
</ItemGroup>
</Project>
|