summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Daudell <s.daudell@boldwebservices.com>2016-08-08 10:04:54 -0500
committerGitHub <noreply@github.com>2016-08-08 10:04:54 -0500
commit24ba24a4654adeffe5abd597b75f478a1b30dc55 (patch)
treea015fdadff1106ec7d3fa1fafb4c6a2284f05c36
parentae984fbd540ebdb2dde060413182d4298fabf6b3 (diff)
Remove static pivot.
This pivot seemed to be causing issues because the NuGet package thought it was actually dynamic.
-rw-r--r--scripts/nuget.autopkg16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/nuget.autopkg b/scripts/nuget.autopkg
index 787216e..8f333f2 100644
--- a/scripts/nuget.autopkg
+++ b/scripts/nuget.autopkg
@@ -32,13 +32,13 @@ nuget {
files {
include: { "..\src\*.hpp" };
- [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; }
+ [x86,v120,release] { lib: vs2013\x32\pugixmls.lib; }
+ [x86,v120,debug] { lib: vs2013\x32\pugixmlsd.lib; }
+ [x64,v120,release] { lib: vs2013\x64\pugixmls.lib; }
+ [x64,v120,debug] { lib: vs2013\x64\pugixmlsd.lib; }
+ [x86,v140,release] { lib: vs2015\Win32_Release\pugixml.lib; }
+ [x86,v140,debug] { lib: vs2015\Win32_Debug\pugixml.lib; }
+ [x64,v140,release] { lib: vs2015\x64_Release\pugixml.lib; }
+ [x64,v140,debug] { lib: vs2015\x64_Debug\pugixml.lib; }
}
}