summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Daudell <s.daudell@boldwebservices.com>2016-08-04 14:36:44 -0500
committerGitHub <noreply@github.com>2016-08-04 14:36:44 -0500
commitafe73da928005f53ec0a2ce2f53c9e6120290285 (patch)
tree12eb68f0d7da71e723810607c0833f2bb95f5ea8
parent4d6556100fdda1631df8d376d066020111ec5934 (diff)
Expand build to include VS 2013.
-rw-r--r--scripts/nuget_build.bat6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/nuget_build.bat b/scripts/nuget_build.bat
index ab3c984..cf942ea 100644
--- a/scripts/nuget_build.bat
+++ b/scripts/nuget_build.bat
@@ -1,6 +1,12 @@
@echo off
cd %~dp0
+"%VS120COMNTOOLS%\VsMSBuildCmd.bat" && ^
+msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x86 /v:minimal /nologo && ^
+msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x86 /v:minimal /nologo && ^
+msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x64 /v:minimal /nologo && ^
+msbuild pugixml_vs2013_static.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x64 /v:minimal /nologo
+
"%VS140COMNTOOLS%\VsMSBuildCmd.bat" && ^
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x86 /v:minimal /nologo && ^
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x86 /v:minimal /nologo && ^