blob: c23af015eaf779dd5b5d2d72fce57a5f751d070b (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?xml version="1.0" encoding="utf-8" ?>
<!-- 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 DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0">
<Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0139\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0139\build\WixToolset.MSBuild.props')" />
<Import Project="..\FindLocalWix.props" />
<PropertyGroup>
<ProjectGuid>{3444D952-F21C-496F-AB6B-56435BFD0787}</ProjectGuid>
<OutputName>bal</OutputName>
<OutputType>Library</OutputType>
<BindFiles>true</BindFiles>
<Pedantic>true</Pedantic>
<Cultures>en-us</Cultures>
</PropertyGroup>
<ItemGroup>
<Compile Include="BalExtension.wxs" />
<Compile Include="Dnc.wxs" />
<Compile Include="Mba.wxs" />
<Compile Include="wixstdba.wxs" />
<Compile Include="wixstdba_x86.wxs" />
</ItemGroup>
<ItemGroup>
<None Include="caSuffix.wxi" />
<None Include="wixstdba_platform.wxi" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<BindInputPaths Include="..\wixstdba\Resources\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\dnchost\dnchost.vcxproj">
<Name>dnchost</Name>
<Project>{B6F70281-6583-4138-BB7F-AABFEBBB3CA2}</Project>
</ProjectReference>
<ProjectReference Include="..\mbahost\mbahost.vcxproj">
<Name>mbahost</Name>
<Project>{12C87C77-3547-44F8-8134-29BC915CB19D}</Project>
</ProjectReference>
<ProjectReference Include="..\wixstdba\wixstdba.vcxproj">
<Name>wixstdba</Name>
<Project>{41085A22-E6AA-4E8B-AB1B-DDEE0DC89DFA}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" />
<Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0139\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0139\build\WixToolset.MSBuild.props'))" />
</Target>
<Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" />
</Project>
|