diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-26 11:31:05 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-11 11:14:01 -0700 |
commit | df016066100df955d5ff98811e113fb2b1bd4b8a (patch) | |
tree | a27b35a3651ca7b1d8c4bb7c7483ec2f92583e08 /src/ext/Http/ca | |
parent | dc6022da6cdbb9d7ca54c4a36485ceead07feaaf (diff) | |
download | wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.gz wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.bz2 wix-df016066100df955d5ff98811e113fb2b1bd4b8a.zip |
Implement integrated build process
Diffstat (limited to 'src/ext/Http/ca')
-rw-r--r-- | src/ext/Http/ca/httpca.vcxproj | 26 | ||||
-rw-r--r-- | src/ext/Http/ca/packages.config | 5 |
2 files changed, 14 insertions, 17 deletions
diff --git a/src/ext/Http/ca/httpca.vcxproj b/src/ext/Http/ca/httpca.vcxproj index fde00ff4..3a17b3b0 100644 --- a/src/ext/Http/ca/httpca.vcxproj +++ b/src/ext/Http/ca/httpca.vcxproj | |||
@@ -1,9 +1,7 @@ | |||
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 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
4 | <Import Project="..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props')" /> | ||
5 | <Import Project="..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props" Condition="Exists('..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props')" /> | ||
6 | 3 | ||
4 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
7 | <ItemGroup Label="ProjectConfigurations"> | 5 | <ItemGroup Label="ProjectConfigurations"> |
8 | <ProjectConfiguration Include="Debug|Win32"> | 6 | <ProjectConfiguration Include="Debug|Win32"> |
9 | <Configuration>Debug</Configuration> | 7 | <Configuration>Debug</Configuration> |
@@ -54,19 +52,23 @@ | |||
54 | </ClCompile> | 52 | </ClCompile> |
55 | <ClCompile Include="snisslcert.cpp" /> | 53 | <ClCompile Include="snisslcert.cpp" /> |
56 | <ClCompile Include="wixhttpca.cpp" /> | 54 | <ClCompile Include="wixhttpca.cpp" /> |
55 | </ItemGroup> | ||
56 | |||
57 | <ItemGroup> | ||
57 | <ClInclude Include="cost.h" /> | 58 | <ClInclude Include="cost.h" /> |
58 | <ClInclude Include="precomp.h" /> | 59 | <ClInclude Include="precomp.h" /> |
59 | <None Include="packages.config" /> | 60 | </ItemGroup> |
61 | |||
62 | <ItemGroup> | ||
60 | <None Include="wixhttpca.def" /> | 63 | <None Include="wixhttpca.def" /> |
61 | </ItemGroup> | 64 | </ItemGroup> |
62 | 65 | ||
63 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | 66 | <ItemGroup> |
67 | <PackageReference Include="WixToolset.Dutil" /> | ||
68 | <PackageReference Include="WixToolset.WcaUtil" /> | ||
69 | <PackageReference Include="Microsoft.SourceLink.GitHub" /> | ||
70 | <PackageReference Include="GitInfo" /> | ||
71 | </ItemGroup> | ||
64 | 72 | ||
65 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | 73 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
66 | <PropertyGroup> | ||
67 | <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> | ||
68 | </PropertyGroup> | ||
69 | <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props'))" /> | ||
70 | <Error Condition="!Exists('..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props'))" /> | ||
71 | </Target> | ||
72 | </Project> | 74 | </Project> |
diff --git a/src/ext/Http/ca/packages.config b/src/ext/Http/ca/packages.config deleted file mode 100644 index 9d88f529..00000000 --- a/src/ext/Http/ca/packages.config +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <packages> | ||
3 | <package id="WixToolset.DUtil" version="4.0.56" targetFramework="native" /> | ||
4 | <package id="WixToolset.WcaUtil" version="4.0.17" targetFramework="native" /> | ||
5 | </packages> \ No newline at end of file | ||