blob: ba1a23496adcb61f4d3d36e2896155319252dd9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!-- 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. -->
<Project Sdk="WixToolset.Sdk" ToolsVersion="4.0">
<PropertyGroup>
<OutputType>Library</OutputType>
<BindFiles>true</BindFiles>
<Cultures>en-us</Cultures>
</PropertyGroup>
<ItemGroup>
<BindInputPaths Include="..\wixstdba\Resources\" />
<BindInputPaths Include="$(OutputPath)netcoreapp3.1" />
<BindInputPaths Include="$(OutputPath)" />
<BindInputPaths Include="$(OutputPath)x86" BindName="x86" />
<BindInputPaths Include="$(OutputPath)x64" BindName="x64" />
<BindInputPaths Include="$(OutputPath)arm64" BindName="arm64" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\dnchost\dnchost.vcxproj" Properties="Platform=ARM64" />
<ProjectReference Include="..\mbahost\mbahost.vcxproj" Properties="Platform=ARM64" />
<ProjectReference Include="..\wixstdba\wixstdba.vcxproj" Properties="Platform=ARM64" />
<ProjectReference Include="..\dnchost\dnchost.vcxproj" Properties="Platform=x86" />
<ProjectReference Include="..\mbahost\mbahost.vcxproj" Properties="Platform=x86" />
<ProjectReference Include="..\wixstdba\wixstdba.vcxproj" Properties="Platform=x86" />
<ProjectReference Include="..\dnchost\dnchost.vcxproj" Properties="Platform=x64" />
<ProjectReference Include="..\mbahost\mbahost.vcxproj" Properties="Platform=x64" />
<ProjectReference Include="..\wixstdba\wixstdba.vcxproj" Properties="Platform=x64" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" />
</ItemGroup>
<!-- Workaround for bug in ProjectReferenceDefineConstants, they're not needed for this project anyway -->
<Target Name="ClearProjectReferenceDefineConstants" AfterTargets="CalculateDefineConstants">
<PropertyGroup>
<ProjectReferenceDefineConstants></ProjectReferenceDefineConstants>
</PropertyGroup>
</Target>
</Project>
|