diff options
author | Bob Arnson <bob@joyofsetup.com> | 2020-05-10 17:45:35 -0400 |
---|---|---|
committer | Bob Arnson <bob@joyofsetup.com> | 2020-05-10 17:45:35 -0400 |
commit | 9fb931523167a8ffbd1c66aea6199b55c4b5e624 (patch) | |
tree | 78ff442e902a382f522b61fc0faf3ff79b76bf26 /src/wcautil | |
parent | ac2e8bea0f54cde664d88af222272d778858f0e7 (diff) | |
parent | 03bd44b7e1ec72a27327cd2561d099d86d82f02c (diff) | |
download | wix-9fb931523167a8ffbd1c66aea6199b55c4b5e624.tar.gz wix-9fb931523167a8ffbd1c66aea6199b55c4b5e624.tar.bz2 wix-9fb931523167a8ffbd1c66aea6199b55c4b5e624.zip |
Merge branch 'master' of https://github.com/wixtoolset/wcautil
Diffstat (limited to 'src/wcautil')
-rw-r--r-- | src/wcautil/packages.config | 4 | ||||
-rw-r--r-- | src/wcautil/wcautil.nuspec | 17 | ||||
-rw-r--r-- | src/wcautil/wcautil.vcxproj | 16 |
3 files changed, 21 insertions, 16 deletions
diff --git a/src/wcautil/packages.config b/src/wcautil/packages.config index b11fe210..0b643acb 100644 --- a/src/wcautil/packages.config +++ b/src/wcautil/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="Nerdbank.GitVersioning" version="2.0.37-beta" targetFramework="native" developmentDependency="true" /> | 3 | <package id="Nerdbank.GitVersioning" version="2.1.65" developmentDependency="true" targetFramework="net40" /> |
4 | <package id="WixToolset.DUtil" version="4.0.3" targetFramework="native" /> | 4 | <package id="WixToolset.DUtil" version="4.0.20" targetFramework="native" /> |
5 | </packages> \ No newline at end of file | 5 | </packages> \ No newline at end of file |
diff --git a/src/wcautil/wcautil.nuspec b/src/wcautil/wcautil.nuspec index 7a4707d1..784aa2bb 100644 --- a/src/wcautil/wcautil.nuspec +++ b/src/wcautil/wcautil.nuspec | |||
@@ -5,8 +5,7 @@ | |||
5 | <version>$version$</version> | 5 | <version>$version$</version> |
6 | <authors>$authors$</authors> | 6 | <authors>$authors$</authors> |
7 | <owners>$authors$</owners> | 7 | <owners>$authors$</owners> |
8 | <!-- <license type="expression">MS-RL</license> --> | 8 | <license type="expression">MS-RL</license> |
9 | <licenseUrl>https://licenses.nuget.org/MS-RL</licenseUrl> | ||
10 | <projectUrl>https://github.com/wixtoolset/wcautil</projectUrl> | 9 | <projectUrl>https://github.com/wixtoolset/wcautil</projectUrl> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
12 | <description>$description$</description> | 11 | <description>$description$</description> |
@@ -19,11 +18,17 @@ | |||
19 | <files> | 18 | <files> |
20 | <file src="build\$id$.props" target="build\" /> | 19 | <file src="build\$id$.props" target="build\" /> |
21 | <file src="inc\*" target="build\native\include" /> | 20 | <file src="inc\*" target="build\native\include" /> |
22 | <file src="..\..\build\$configuration$\v140_xp\x64\wcautil.lib" target="build\native\v140\x64" /> | 21 | <file src="..\..\build\$configuration$\v140\x64\wcautil.lib" target="build\native\v140\x64" /> |
23 | <file src="..\..\build\$configuration$\v140_xp\x86\wcautil.lib" target="build\native\v140\x86" /> | 22 | <file src="..\..\build\$configuration$\v140\x86\wcautil.lib" target="build\native\v140\x86" /> |
24 | <file src="..\..\build\$configuration$\v141_xp\x64\wcautil.lib" target="build\native\v141\x64" /> | 23 | <file src="..\..\build\$configuration$\v141\x64\wcautil.lib" target="build\native\v141\x64" /> |
25 | <file src="..\..\build\$configuration$\v141_xp\x86\wcautil.lib" target="build\native\v141\x86" /> | 24 | <file src="..\..\build\$configuration$\v141\x86\wcautil.lib" target="build\native\v141\x86" /> |
25 | <!-- | ||
26 | <file src="..\..\build\$configuration$\v141\ARM\wcautil.lib" target="build\native\v141\ARM" /> | 26 | <file src="..\..\build\$configuration$\v141\ARM\wcautil.lib" target="build\native\v141\ARM" /> |
27 | <file src="..\..\build\$configuration$\v141\ARM64\wcautil.lib" target="build\native\v141\ARM64" /> | 27 | <file src="..\..\build\$configuration$\v141\ARM64\wcautil.lib" target="build\native\v141\ARM64" /> |
28 | --> | ||
29 | <file src="..\..\build\$configuration$\v142\x64\wcautil.lib" target="build\native\v142\x64" /> | ||
30 | <file src="..\..\build\$configuration$\v142\x86\wcautil.lib" target="build\native\v142\x86" /> | ||
31 | <file src="..\..\build\$configuration$\v142\ARM\wcautil.lib" target="build\native\v142\ARM" /> | ||
32 | <file src="..\..\build\$configuration$\v142\ARM64\wcautil.lib" target="build\native\v142\ARM64" /> | ||
28 | </files> | 33 | </files> |
29 | </package> | 34 | </package> |
diff --git a/src/wcautil/wcautil.vcxproj b/src/wcautil/wcautil.vcxproj index 5cdbf6f1..a31994ab 100644 --- a/src/wcautil/wcautil.vcxproj +++ b/src/wcautil/wcautil.vcxproj | |||
@@ -1,7 +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"> | 3 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
4 | <Import Project="..\..\packages\WixToolset.DUtil.4.0.3\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.3\build\WixToolset.DUtil.props')" /> | 4 | <Import Project="..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props')" /> |
5 | <ItemGroup Label="ProjectConfigurations"> | 5 | <ItemGroup Label="ProjectConfigurations"> |
6 | <ProjectConfiguration Include="Debug|ARM"> | 6 | <ProjectConfiguration Include="Debug|ARM"> |
7 | <Configuration>Debug</Configuration> | 7 | <Configuration>Debug</Configuration> |
@@ -11,6 +11,10 @@ | |||
11 | <Configuration>Debug</Configuration> | 11 | <Configuration>Debug</Configuration> |
12 | <Platform>ARM64</Platform> | 12 | <Platform>ARM64</Platform> |
13 | </ProjectConfiguration> | 13 | </ProjectConfiguration> |
14 | <ProjectConfiguration Include="Debug|x64"> | ||
15 | <Configuration>Debug</Configuration> | ||
16 | <Platform>x64</Platform> | ||
17 | </ProjectConfiguration> | ||
14 | <ProjectConfiguration Include="Debug|Win32"> | 18 | <ProjectConfiguration Include="Debug|Win32"> |
15 | <Configuration>Debug</Configuration> | 19 | <Configuration>Debug</Configuration> |
16 | <Platform>Win32</Platform> | 20 | <Platform>Win32</Platform> |
@@ -27,10 +31,6 @@ | |||
27 | <Configuration>Release</Configuration> | 31 | <Configuration>Release</Configuration> |
28 | <Platform>Win32</Platform> | 32 | <Platform>Win32</Platform> |
29 | </ProjectConfiguration> | 33 | </ProjectConfiguration> |
30 | <ProjectConfiguration Include="Debug|x64"> | ||
31 | <Configuration>Debug</Configuration> | ||
32 | <Platform>x64</Platform> | ||
33 | </ProjectConfiguration> | ||
34 | <ProjectConfiguration Include="Release|x64"> | 34 | <ProjectConfiguration Include="Release|x64"> |
35 | <Configuration>Release</Configuration> | 35 | <Configuration>Release</Configuration> |
36 | <Platform>x64</Platform> | 36 | <Platform>x64</Platform> |
@@ -50,7 +50,7 @@ | |||
50 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | 50 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
51 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | 51 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
52 | <ImportGroup Label="Shared"> | 52 | <ImportGroup Label="Shared"> |
53 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.0.37-beta\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.0.37-beta\build\Nerdbank.GitVersioning.targets')" /> | 53 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> |
54 | </ImportGroup> | 54 | </ImportGroup> |
55 | <Import Project="..\NativeMultiTargeting.Build.props" /> | 55 | <Import Project="..\NativeMultiTargeting.Build.props" /> |
56 | 56 | ||
@@ -97,7 +97,7 @@ | |||
97 | <PropertyGroup> | 97 | <PropertyGroup> |
98 | <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> | 98 | <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> |
99 | </PropertyGroup> | 99 | </PropertyGroup> |
100 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.0.37-beta\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.0.37-beta\build\Nerdbank.GitVersioning.targets'))" /> | 100 | <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'))" /> |
101 | <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.3\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.3\build\WixToolset.DUtil.props'))" /> | 101 | <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props'))" /> |
102 | </Target> | 102 | </Target> |
103 | </Project> \ No newline at end of file | 103 | </Project> \ No newline at end of file |