diff options
author | Stephen Daudell <s.daudell@boldwebservices.com> | 2016-08-04 14:30:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-04 14:30:25 -0500 |
commit | 4d6556100fdda1631df8d376d066020111ec5934 (patch) | |
tree | 9a163a7482f18bba0c7d3e968d84c28bf67388d5 /scripts/nuget.autopkg | |
parent | bda8b72f81d5cf29bc4a5f77229f81e4cd07eb7f (diff) |
Update Nuget autopkg.
Include more configurations in the Nuget package.
Diffstat (limited to 'scripts/nuget.autopkg')
-rw-r--r-- | scripts/nuget.autopkg | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/scripts/nuget.autopkg b/scripts/nuget.autopkg index b42d76b..de1920a 100644 --- a/scripts/nuget.autopkg +++ b/scripts/nuget.autopkg @@ -24,9 +24,13 @@ nuget { files { include: { "..\src\*.hpp" }; - [x86,release] { lib: vs2015\Win32_Release\pugixml.lib; } - [x86,debug] { lib: vs2015\Win32_Debug\pugixml.lib; } - [x64,release] { lib: vs2015\x64_Release\pugixml.lib; } - [x64,debug] { lib: vs2015\x64_Debug\pugixml.lib; } + [x86,v120,static,release] { lib: vs2013\x32\pugixmls.lib; } + [x86,v120,static,debug] { lib: vs2013\x32\pugixmlsd.lib; } + [x64,v120,static,release] { lib: vs2013\x64\pugixmls.lib; } + [x64,v120,static,debug] { lib: vs2013\x64\pugixmlsd.lib; } + [x86,v140,static,release] { lib: vs2015\Win32_Release\pugixml.lib; } + [x86,v140,static,debug] { lib: vs2015\Win32_Debug\pugixml.lib; } + [x64,v140,static,release] { lib: vs2015\x64_Release\pugixml.lib; } + [x64,v140,static,debug] { lib: vs2015\x64_Debug\pugixml.lib; } } } |