blob: e703a0a8674fcb0f78f9047a741e05c265988eb3 (
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
|
<!-- 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">
<PropertyGroup>
<OutputType>Library</OutputType>
<BindFiles>true</BindFiles>
<Cultures>en-us</Cultures>
</PropertyGroup>
<ItemGroup>
<BindPath Include="..\wixstdba\Resources\" />
<BindPath Include="$(OutputPath)net20" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\dnchost\dnchost.vcxproj" Platforms="arm64,x86,x64" />
<ProjectReference Include="..\mbahost\mbahost.vcxproj" Platforms="arm64,x86,x64" />
<ProjectReference Include="..\wixiuiba\wixiuiba.vcxproj" Platforms="arm64,x86,x64" />
<ProjectReference Include="..\wixstdba\wixstdba.vcxproj" Platforms="arm64,x86,x64" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
</Project>
|