| 1 | <!-- 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. --> |
| 2 | <Project Sdk="WixToolset.Sdk"> |
| 3 | |
| 4 | <PropertyGroup> |
| 5 | <OutputType>Library</OutputType> |
| 6 | <BindFiles>true</BindFiles> |
| 7 | <Cultures>en-us</Cultures> |
| 8 | </PropertyGroup> |
| 9 | |
| 10 | <ItemGroup> |
| 11 | <BindInputPaths Include="$(OutputPath)x86" BindName='x86' /> |
| 12 | <BindInputPaths Include="$(OutputPath)x64" BindName='x64' /> |
| 13 | <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' /> |
| 14 | </ItemGroup> |
| 15 | |
| 16 | <ItemGroup> |
| 17 | <ProjectReference Include="..\ca\iisca.vcxproj" Properties="Platform=ARM64" /> |
| 18 | <ProjectReference Include="..\ca\iisca.vcxproj" Properties="Platform=x86" /> |
| 19 | <ProjectReference Include="..\ca\iisca.vcxproj" Properties="Platform=x64" /> |
| 20 | </ItemGroup> |
| 21 | |
| 22 | <ItemGroup> |
| 23 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
| 24 | </ItemGroup> |
| 25 | </Project> |