| 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="Microsoft.NET.Sdk"> |
| 5 | |
| 6 | <PropertyGroup> |
| 7 | <TargetFramework>netstandard2.0</TargetFramework> |
| 8 | <DebugType>embedded</DebugType> |
| 9 | <Description>WiX Toolset Native Processing</Description> |
| 10 | <CreateDocumentationFile>true</CreateDocumentationFile> |
| 11 | </PropertyGroup> |
| 12 | |
| 13 | <ItemGroup> |
| 14 | <None Include="cubes\darice.cub" CopyToOutputDirectory="PreserveNewest" /> |
| 15 | <None Include="cubes\mergemod.cub" CopyToOutputDirectory="PreserveNewest" /> |
| 16 | <None Include="targets\WixToolset.Core.Native.targets" CopyToOutputDirectory="PreserveNewest" /> |
| 17 | </ItemGroup> |
| 18 | |
| 19 | <ItemGroup Condition=" '$(NCrunch)'=='' "> |
| 20 | <ProjectReference Include="..\wixnative\wixnative.vcxproj" ReferenceOutputAssembly="false" PrivateAssets="All" Properties="Platform=ARM64" /> |
| 21 | <ProjectReference Include="..\wixnative\wixnative.vcxproj" ReferenceOutputAssembly="false" PrivateAssets="All" Properties="Platform=x86" /> |
| 22 | <ProjectReference Include="..\wixnative\wixnative.vcxproj" ReferenceOutputAssembly="false" PrivateAssets="All" Properties="Platform=x64" /> |
| 23 | </ItemGroup> |
| 24 | |
| 25 | <ItemGroup> |
| 26 | <PackageReference Include="WixToolset.Data" /> |
| 27 | </ItemGroup> |
| 28 | </Project> |