main
wixproj 26 lines 1.05 KB
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 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. -->
3
4 <Project Sdk="WixToolset.Sdk">
5 <PropertyGroup>
6 <OutputType>Library</OutputType>
7 <BindFiles>true</BindFiles>
8 <SuppressSpecificWarnings>1086</SuppressSpecificWarnings>
9 </PropertyGroup>
10
11 <ItemGroup>
12 <BindInputPaths Include="$(OutputPath)x86" BindName='x86' />
13 <BindInputPaths Include="$(OutputPath)x64" BindName='x64' />
14 <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' />
15 </ItemGroup>
16
17 <ItemGroup>
18 <ProjectReference Include="..\ca\complusca.vcxproj" Properties="Platform=x86" />
19 <ProjectReference Include="..\ca\complusca.vcxproj" Properties="Platform=x64" />
20 <ProjectReference Include="..\ca\complusca.vcxproj" Properties="Platform=ARM64" />
21 </ItemGroup>
22
23 <ItemGroup>
24 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
25 </ItemGroup>
26 </Project>