main
wixproj 28 lines 1.23 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 <!-- PropertyModularizationSuppressed -->
9 <SuppressSpecificWarnings>1086</SuppressSpecificWarnings>
10 <Cultures>en-us</Cultures>
11 </PropertyGroup>
12
13 <ItemGroup>
14 <BindInputPaths Include="$(OutputPath)x86" BindName='x86' />
15 <BindInputPaths Include="$(OutputPath)x64" BindName='x64' />
16 <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' />
17 </ItemGroup>
18
19 <ItemGroup>
20 <ProjectReference Include="..\ca\dependencyca.vcxproj" Properties="Platform=ARM64" ReferenceOutputAssembly="false" />
21 <ProjectReference Include="..\ca\dependencyca.vcxproj" Properties="Platform=x86" ReferenceOutputAssembly="false" />
22 <ProjectReference Include="..\ca\dependencyca.vcxproj" Properties="Platform=x64" ReferenceOutputAssembly="false" />
23 </ItemGroup>
24
25 <ItemGroup>
26 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
27 </ItemGroup>
28 </Project>