diff options
author | Bob Arnson <bob@joyofsetup.com> | 2019-10-24 17:16:31 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2019-10-24 17:20:04 -0400 |
commit | 014bc7918c05f01f819c07fac6e502e0f542a222 (patch) | |
tree | d95b7312a2b1afeda1115f304f5c7a394f055c83 /src/ca | |
parent | 5ab9ec85e0f5c403631e3f054645ba8c7dcc058d (diff) | |
download | wix-014bc7918c05f01f819c07fac6e502e0f542a222.tar.gz wix-014bc7918c05f01f819c07fac6e502e0f542a222.tar.bz2 wix-014bc7918c05f01f819c07fac6e502e0f542a222.zip |
Modernize tuples; update to latest dependencies.
Diffstat (limited to 'src/ca')
-rw-r--r-- | src/ca/netfxca.vcxproj | 20 | ||||
-rw-r--r-- | src/ca/packages.config | 4 |
2 files changed, 7 insertions, 17 deletions
diff --git a/src/ca/netfxca.vcxproj b/src/ca/netfxca.vcxproj index 8be3a0ea..3f525e58 100644 --- a/src/ca/netfxca.vcxproj +++ b/src/ca/netfxca.vcxproj | |||
@@ -1,10 +1,8 @@ | |||
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"> |
5 | <Import Project="..\..\packages\WixToolset.DUtil.4.0.6\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.6\build\WixToolset.DUtil.props')" /> | 4 | <Import Project="..\..\packages\WixToolset.WcaUtil.4.0.8\build\WixToolset.WcaUtil.props" Condition="Exists('..\..\packages\WixToolset.WcaUtil.4.0.8\build\WixToolset.WcaUtil.props')" /> |
6 | <Import Project="..\..\packages\WixToolset.WcaUtil.4.0.2\build\WixToolset.WcaUtil.props" Condition="Exists('..\..\packages\WixToolset.WcaUtil.4.0.2\build\WixToolset.WcaUtil.props')" /> | 5 | <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"> | 6 | <ItemGroup Label="ProjectConfigurations"> |
9 | <ProjectConfiguration Include="Debug|Win32"> | 7 | <ProjectConfiguration Include="Debug|Win32"> |
10 | <Configuration>Debug</Configuration> | 8 | <Configuration>Debug</Configuration> |
@@ -15,7 +13,6 @@ | |||
15 | <Platform>Win32</Platform> | 13 | <Platform>Win32</Platform> |
16 | </ProjectConfiguration> | 14 | </ProjectConfiguration> |
17 | </ItemGroup> | 15 | </ItemGroup> |
18 | |||
19 | <PropertyGroup Label="Globals"> | 16 | <PropertyGroup Label="Globals"> |
20 | <ProjectGuid>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</ProjectGuid> | 17 | <ProjectGuid>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</ProjectGuid> |
21 | <ConfigurationType>DynamicLibrary</ConfigurationType> | 18 | <ConfigurationType>DynamicLibrary</ConfigurationType> |
@@ -25,38 +22,31 @@ | |||
25 | <ProjectModuleDefinitionFile>netfxca.def</ProjectModuleDefinitionFile> | 22 | <ProjectModuleDefinitionFile>netfxca.def</ProjectModuleDefinitionFile> |
26 | <Description>WiX Toolset .NET Framework CustomAction</Description> | 23 | <Description>WiX Toolset .NET Framework CustomAction</Description> |
27 | </PropertyGroup> | 24 | </PropertyGroup> |
28 | |||
29 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | 25 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
30 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | 26 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
31 | |||
32 | <PropertyGroup> | 27 | <PropertyGroup> |
33 | <ProjectAdditionalLinkLibraries>msi.lib</ProjectAdditionalLinkLibraries> | 28 | <ProjectAdditionalLinkLibraries>msi.lib</ProjectAdditionalLinkLibraries> |
34 | </PropertyGroup> | 29 | </PropertyGroup> |
35 | |||
36 | <ItemGroup> | 30 | <ItemGroup> |
37 | <ClCompile Include="dllmain.cpp"> | 31 | <ClCompile Include="dllmain.cpp"> |
38 | <PrecompiledHeader>Create</PrecompiledHeader> | 32 | <PrecompiledHeader>Create</PrecompiledHeader> |
39 | </ClCompile> | 33 | </ClCompile> |
40 | <ClCompile Include="netfxca.cpp" /> | 34 | <ClCompile Include="netfxca.cpp" /> |
41 | </ItemGroup> | 35 | </ItemGroup> |
42 | |||
43 | <ItemGroup> | 36 | <ItemGroup> |
44 | <ClInclude Include="cost.h" /> | 37 | <ClInclude Include="cost.h" /> |
45 | <ClInclude Include="precomp.h" /> | 38 | <ClInclude Include="precomp.h" /> |
46 | </ItemGroup> | 39 | </ItemGroup> |
47 | |||
48 | <ItemGroup> | 40 | <ItemGroup> |
49 | <None Include="packages.config" /> | ||
50 | <None Include="netfxca.def" /> | 41 | <None Include="netfxca.def" /> |
42 | <None Include="packages.config" /> | ||
51 | </ItemGroup> | 43 | </ItemGroup> |
52 | |||
53 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | 44 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
54 | |||
55 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | 45 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
56 | <PropertyGroup> | 46 | <PropertyGroup> |
57 | <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> | 47 | <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> |
58 | </PropertyGroup> | 48 | </PropertyGroup> |
59 | <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.6\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.6\build\WixToolset.DUtil.props'))" /> | 49 | <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 | <Error Condition="!Exists('..\..\packages\WixToolset.WcaUtil.4.0.2\build\WixToolset.WcaUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.WcaUtil.4.0.2\build\WixToolset.WcaUtil.props'))" /> | 50 | <Error Condition="!Exists('..\..\packages\WixToolset.WcaUtil.4.0.8\build\WixToolset.WcaUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.WcaUtil.4.0.8\build\WixToolset.WcaUtil.props'))" /> |
61 | </Target> | 51 | </Target> |
62 | </Project> \ No newline at end of file | 52 | </Project> \ No newline at end of file |
diff --git a/src/ca/packages.config b/src/ca/packages.config index b87f9ab4..4e9403bf 100644 --- a/src/ca/packages.config +++ b/src/ca/packages.config | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <packages> | 2 | <packages> |
3 | <package id="WixToolset.DUtil" version="4.0.6" targetFramework="native" /> | 3 | <package id="WixToolset.DUtil" version="4.0.18" targetFramework="native" /> |
4 | <package id="WixToolset.WcaUtil" version="4.0.2" targetFramework="native" /> | 4 | <package id="WixToolset.WcaUtil" version="4.0.8" targetFramework="native" /> |
5 | </packages> \ No newline at end of file | 5 | </packages> \ No newline at end of file |