main
csproj 27 lines 1.65 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="Microsoft.NET.Sdk">
5 <PropertyGroup>
6 <TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
7 <AssemblyName>WixToolset.BootstrapperApplicationApi</AssemblyName>
8 <RootNamespace>WixToolset.BootstrapperApplicationApi</RootNamespace>
9 <DebugType>embedded</DebugType>
10 <Description>Managed Bootstrapper Application API</Description>
11 <NuspecFile>$(MSBuildThisFileName).nuspec</NuspecFile>
12 <CreateDocumentationFile>true</CreateDocumentationFile>
13 </PropertyGroup>
14
15 <ItemGroup Condition=" '$(NCrunch)'=='' ">
16 <ProjectReference Include="..\mbanative\mbanative.vcxproj" ReferenceOutputAssembly="false" PrivateAssets="All" Properties="Platform=x86" />
17 </ItemGroup>
18
19 <ItemGroup Condition=" '$(NCrunch)'=='' ">
20 <None Include="$(BaseOutputPath)$(Configuration)\$(PlatformToolset)\x86\mbanative.dll" CopyToOutputDirectory="PreserveNewest" />
21 <None Include="$(BaseOutputPath)$(Configuration)\$(PlatformToolset)\x86\mbanative.pdb" CopyToOutputDirectory="PreserveNewest" />
22 </ItemGroup>
23 <ItemGroup Condition=" '$(NCrunch)'=='1' ">
24 <None Include="$(NCrunchOriginalProjectDir)..\..\build\$(SegmentName)\$(Configuration)\$(PlatformToolset)\x86\mbanative.dll" CopyToOutputDirectory="PreserveNewest" />
25 <None Include="$(NCrunchOriginalProjectDir)..\..\build\$(SegmentName)\$(Configuration)\$(PlatformToolset)\x86\mbanative.pdb" CopyToOutputDirectory="PreserveNewest" />
26 </ItemGroup>
27 </Project>