blob: ef792a1379c649c1d5658ee37d0db71b3693bdf1 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- 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>
<SuppressSpecificWarnings>1086</SuppressSpecificWarnings>
</PropertyGroup>
<ItemGroup>
<BindInputPaths Include="$(OutputPath)x86" BindName='x86' />
<BindInputPaths Include="$(OutputPath)x64" BindName='x64' />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ca\complusca.vcxproj" Properties="Platform=x86" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\ca\complusca.vcxproj" Properties="Platform=x64" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" />
</ItemGroup>
</Project>
|