blob: 143a9fbf900cae58ae371ba6189cde3ee1cb7556 (
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
|
<!-- 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>
<ProjectReference Include="..\ca\netfxca.vcxproj" Properties="Platform=ARM" />
<ProjectReference Include="..\ca\netfxca.vcxproj" Properties="Platform=ARM64" />
<ProjectReference Include="..\ca\netfxca.vcxproj" Properties="Platform=x86" />
<ProjectReference Include="..\ca\netfxca.vcxproj" Properties="Platform=x64" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.Bal.wixext" Version="4.0.*" />
<PackageReference Include="WixToolset.Util.wixext" Version="4.0.*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="All" />
</ItemGroup>
</Project>
|