aboutsummaryrefslogtreecommitdiff
path: root/src/bextutil/bextutil.vcxproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/bextutil/bextutil.vcxproj')
-rw-r--r--src/bextutil/bextutil.vcxproj86
1 files changed, 86 insertions, 0 deletions
diff --git a/src/bextutil/bextutil.vcxproj b/src/bextutil/bextutil.vcxproj
new file mode 100644
index 00000000..3deb3317
--- /dev/null
+++ b/src/bextutil/bextutil.vcxproj
@@ -0,0 +1,86 @@
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 <Import Project="..\..\packages\WixToolset.BootstrapperCore.Native.4.0.13\build\WixToolset.BootstrapperCore.Native.props" Condition="Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.13\build\WixToolset.BootstrapperCore.Native.props')" />
6 <Import Project="..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" />
7
8 <ItemGroup Label="ProjectConfigurations">
9 <ProjectConfiguration Include="Debug|Win32">
10 <Configuration>Debug</Configuration>
11 <Platform>Win32</Platform>
12 </ProjectConfiguration>
13 <ProjectConfiguration Include="Release|Win32">
14 <Configuration>Release</Configuration>
15 <Platform>Win32</Platform>
16 </ProjectConfiguration>
17 <ProjectConfiguration Include="Debug|x64">
18 <Configuration>Debug</Configuration>
19 <Platform>x64</Platform>
20 </ProjectConfiguration>
21 <ProjectConfiguration Include="Release|x64">
22 <Configuration>Release</Configuration>
23 <Platform>x64</Platform>
24 </ProjectConfiguration>
25 </ItemGroup>
26
27 <PropertyGroup Label="Globals">
28 <ProjectGuid>{06027492-1CB9-48BC-B31E-C1F9356ED07E}</ProjectGuid>
29 <ConfigurationType>StaticLibrary</ConfigurationType>
30 <TargetName>bextutil</TargetName>
31 <PlatformToolset>v141</PlatformToolset>
32 <CharacterSet>MultiByte</CharacterSet>
33 <Description>WiX Toolset Bundle Extension native utility library</Description>
34 </PropertyGroup>
35
36 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
37 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
38 <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" />
39 <Import Project="..\NativeMultiTargeting.Build.props" />
40
41 <ImportGroup Label="ExtensionSettings">
42 </ImportGroup>
43
44 <ImportGroup Label="Shared">
45 </ImportGroup>
46
47 <PropertyGroup>
48 <ProjectAdditionalIncludeDirectories>$(ProjectDir)..\inc</ProjectAdditionalIncludeDirectories>
49 </PropertyGroup>
50
51 <ItemGroup>
52 <ClCompile Include="BextBundleExtensionEngine.cpp" />
53 <ClCompile Include="bextutil.cpp" />
54 <ClCompile Include="precomp.cpp">
55 <PrecompiledHeader>Create</PrecompiledHeader>
56 </ClCompile>
57 </ItemGroup>
58 <ItemGroup>
59 <ClInclude Include="inc\BextBaseBundleExtension.h" />
60 <ClInclude Include="inc\BextBaseBundleExtensionProc.h" />
61 <ClInclude Include="inc\BextBundleExtensionEngine.h" />
62 <ClInclude Include="inc\bextutil.h" />
63 <ClInclude Include="inc\IBundleExtension.h" />
64 <ClInclude Include="inc\IBundleExtensionEngine.h" />
65 <ClInclude Include="precomp.h" />
66 </ItemGroup>
67
68 <ItemGroup>
69 <None Include="packages.config" />
70 </ItemGroup>
71
72 <Target Name="Pack"
73 DependsOnTargets="GetBuildVersion">
74 <Exec Command='nuget pack bextutil.nuspec -OutputDirectory "$(BaseOutputPath)$(Configuration)" -Properties Configuration=$(Configuration);Id=WixToolset.BextUtil;Version="$(BuildVersionSimple)";Authors="$(Authors)";Copyright="$(Copyright)";Description="$(Description)";Title="$(Title)"' />
75 </Target>
76
77 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
78 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
79 <PropertyGroup>
80 <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>
81 </PropertyGroup>
82 <Error Condition="!Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.13\build\WixToolset.BootstrapperCore.Native.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BootstrapperCore.Native.4.0.13\build\WixToolset.BootstrapperCore.Native.props'))" />
83 <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props'))" />
84 <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'))" />
85 </Target>
86</Project>