diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 19:46:56 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 21:57:49 +1000 |
commit | 0afd76e4c5d46f237591d860e7d445e267522187 (patch) | |
tree | 9f3b648da7733464c83ba6e253a65a18d17f5583 /src/be/utilbe.vcxproj | |
parent | d74e3dd4bcc573d0c4b1fb5c36c8bf0115cc21a1 (diff) | |
download | wix-0afd76e4c5d46f237591d860e7d445e267522187.tar.gz wix-0afd76e4c5d46f237591d860e7d445e267522187.tar.bz2 wix-0afd76e4c5d46f237591d860e7d445e267522187.zip |
Add DetectSHA2Support "search".
Diffstat (limited to 'src/be/utilbe.vcxproj')
-rw-r--r-- | src/be/utilbe.vcxproj | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/src/be/utilbe.vcxproj b/src/be/utilbe.vcxproj index 963eac7f..e64d113e 100644 --- a/src/be/utilbe.vcxproj +++ b/src/be/utilbe.vcxproj | |||
@@ -1,10 +1,9 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 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. --> | 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"> | 3 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
4 | <Import Project="..\..\packages\WixToolset.BextUtil.4.0.16\build\WixToolset.BextUtil.props" Condition="Exists('..\..\packages\WixToolset.BextUtil.4.0.16\build\WixToolset.BextUtil.props')" /> | ||
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')" /> | 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')" /> | 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"> | 7 | <ItemGroup Label="ProjectConfigurations"> |
9 | <ProjectConfiguration Include="Debug|Win32"> | 8 | <ProjectConfiguration Include="Debug|Win32"> |
10 | <Configuration>Debug</Configuration> | 9 | <Configuration>Debug</Configuration> |
@@ -15,7 +14,6 @@ | |||
15 | <Platform>Win32</Platform> | 14 | <Platform>Win32</Platform> |
16 | </ProjectConfiguration> | 15 | </ProjectConfiguration> |
17 | </ItemGroup> | 16 | </ItemGroup> |
18 | |||
19 | <PropertyGroup Label="Globals"> | 17 | <PropertyGroup Label="Globals"> |
20 | <ProjectGuid>{630C1EE7-2517-4A8C-83E3-DA1150308B58}</ProjectGuid> | 18 | <ProjectGuid>{630C1EE7-2517-4A8C-83E3-DA1150308B58}</ProjectGuid> |
21 | <ConfigurationType>DynamicLibrary</ConfigurationType> | 19 | <ConfigurationType>DynamicLibrary</ConfigurationType> |
@@ -25,37 +23,37 @@ | |||
25 | <ProjectModuleDefinitionFile>utilbe.def</ProjectModuleDefinitionFile> | 23 | <ProjectModuleDefinitionFile>utilbe.def</ProjectModuleDefinitionFile> |
26 | <Description>WiX Toolset Util BundleExtension</Description> | 24 | <Description>WiX Toolset Util BundleExtension</Description> |
27 | </PropertyGroup> | 25 | </PropertyGroup> |
28 | |||
29 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | 26 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
30 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | 27 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
31 | |||
32 | <PropertyGroup> | 28 | <PropertyGroup> |
33 | <ProjectAdditionalLinkLibraries>msi.lib</ProjectAdditionalLinkLibraries> | 29 | <ProjectAdditionalLinkLibraries>msi.lib</ProjectAdditionalLinkLibraries> |
34 | </PropertyGroup> | 30 | </PropertyGroup> |
35 | |||
36 | <ItemGroup> | 31 | <ItemGroup> |
32 | <ClCompile Include="detectsha2support.cpp" /> | ||
37 | <ClCompile Include="precomp.cpp"> | 33 | <ClCompile Include="precomp.cpp"> |
38 | <PrecompiledHeader>Create</PrecompiledHeader> | 34 | <PrecompiledHeader>Create</PrecompiledHeader> |
39 | </ClCompile> | 35 | </ClCompile> |
40 | <ClCompile Include="utilbe.cpp" /> | 36 | <ClCompile Include="utilbe.cpp" /> |
37 | <ClCompile Include="UtilBundleExtension.cpp" /> | ||
38 | <ClCompile Include="utilsearch.cpp" /> | ||
41 | </ItemGroup> | 39 | </ItemGroup> |
42 | |||
43 | <ItemGroup> | 40 | <ItemGroup> |
41 | <ClInclude Include="detectsha2support.h" /> | ||
44 | <ClInclude Include="precomp.h" /> | 42 | <ClInclude Include="precomp.h" /> |
43 | <ClInclude Include="UtilBundleExtension.h" /> | ||
44 | <ClInclude Include="utilsearch.h" /> | ||
45 | </ItemGroup> | 45 | </ItemGroup> |
46 | |||
47 | <ItemGroup> | 46 | <ItemGroup> |
48 | <None Include="packages.config" /> | 47 | <None Include="packages.config" /> |
49 | <None Include="utilbe.def" /> | 48 | <None Include="utilbe.def" /> |
50 | </ItemGroup> | 49 | </ItemGroup> |
51 | |||
52 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | 50 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
53 | |||
54 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | 51 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
55 | <PropertyGroup> | 52 | <PropertyGroup> |
56 | <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> | 53 | <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> |
57 | </PropertyGroup> | 54 | </PropertyGroup> |
55 | <Error Condition="!Exists('..\..\packages\WixToolset.BextUtil.4.0.16\build\WixToolset.BextUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BextUtil.4.0.16\build\WixToolset.BextUtil.props'))" /> | ||
58 | <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'))" /> | 56 | <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'))" /> |
59 | <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'))" /> | 57 | <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'))" /> |
60 | </Target> | 58 | </Target> |
61 | </Project> | 59 | </Project> \ No newline at end of file |