main
vcxproj 85 lines 3.18 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 DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5 <ItemGroup Label="ProjectConfigurations">
6 <ProjectConfiguration Include="Debug|ARM64">
7 <Configuration>Debug</Configuration>
8 <Platform>ARM64</Platform>
9 </ProjectConfiguration>
10 <ProjectConfiguration Include="Release|ARM64">
11 <Configuration>Release</Configuration>
12 <Platform>ARM64</Platform>
13 </ProjectConfiguration>
14 <ProjectConfiguration Include="Debug|Win32">
15 <Configuration>Debug</Configuration>
16 <Platform>Win32</Platform>
17 </ProjectConfiguration>
18 <ProjectConfiguration Include="Release|Win32">
19 <Configuration>Release</Configuration>
20 <Platform>Win32</Platform>
21 </ProjectConfiguration>
22 <ProjectConfiguration Include="Debug|x64">
23 <Configuration>Debug</Configuration>
24 <Platform>x64</Platform>
25 </ProjectConfiguration>
26 <ProjectConfiguration Include="Release|x64">
27 <Configuration>Release</Configuration>
28 <Platform>x64</Platform>
29 </ProjectConfiguration>
30 </ItemGroup>
31
32 <PropertyGroup Label="Globals">
33 <ProjectGuid>{EDCB8095-0E6A-43E0-BC33-C4F762FC5CDB}</ProjectGuid>
34 <ConfigurationType>StaticLibrary</ConfigurationType>
35 <TargetName>balutil</TargetName>
36 <CharacterSet>MultiByte</CharacterSet>
37 <Description>WiX Toolset Bootstrapper Application Layer native utility library</Description>
38 </PropertyGroup>
39
40 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
41 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
42 <Import Project="..\..\..\NativeMultiTargeting.Build.props" />
43
44 <ImportGroup Label="ExtensionSettings">
45 </ImportGroup>
46
47 <ImportGroup Label="Shared">
48 </ImportGroup>
49
50 <PropertyGroup>
51 <ProjectAdditionalIncludeDirectories>inc;..\inc</ProjectAdditionalIncludeDirectories>
52 </PropertyGroup>
53
54 <ItemGroup>
55 <ClCompile Include="BalBootstrapperEngine.cpp" />
56 <ClCompile Include="balcondition.cpp" />
57 <ClCompile Include="balinfo.cpp" />
58 <ClCompile Include="balretry.cpp" />
59 <ClCompile Include="balutil.cpp" />
60 <ClCompile Include="precomp.cpp">
61 <PrecompiledHeader>Create</PrecompiledHeader>
62 </ClCompile>
63 <ClCompile Include="msg.cpp" />
64 </ItemGroup>
65 <ItemGroup>
66 <ClInclude Include="inc\BootstrapperApplicationBase.h" />
67 <ClInclude Include="inc\balcondition.h" />
68 <ClInclude Include="inc\balinfo.h" />
69 <ClInclude Include="inc\balretry.h" />
70 <ClInclude Include="inc\balutil.h" />
71 <ClInclude Include="inc\IBootstrapperApplication.h" />
72 <ClInclude Include="inc\IBootstrapperEngine.h" />
73 <ClInclude Include="BalBootstrapperEngine.h" />
74 <ClInclude Include="precomp.h" />
75 <ClInclude Include="msg.h" />
76 </ItemGroup>
77
78 <ItemGroup>
79 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
80
81 <PackageReference Include="WixToolset.DUtil" />
82 </ItemGroup>
83
84 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
85 </Project>