summaryrefslogtreecommitdiff
path: root/scripts/nuget_build.bat
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-08-07 09:06:41 -0700
committerGitHub <noreply@github.com>2016-08-07 09:06:41 -0700
commit55cea93e6c131bdd73e7bab13539f33baab449b1 (patch)
tree034afca5feec4ddc8b270e3ec4b54525b45f7c19 /scripts/nuget_build.bat
parentbda8b72f81d5cf29bc4a5f77229f81e4cd07eb7f (diff)
parentae984fbd540ebdb2dde060413182d4298fabf6b3 (diff)
Merge pull request #108 from steji113/master
scripts: Add VS2013 static builds to nuget package
Diffstat (limited to 'scripts/nuget_build.bat')
-rw-r--r--scripts/nuget_build.bat4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/nuget_build.bat b/scripts/nuget_build.bat
index ab3c984..588f036 100644
--- a/scripts/nuget_build.bat
+++ b/scripts/nuget_build.bat
@@ -2,6 +2,10 @@
cd %~dp0
"%VS140COMNTOOLS%\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 && ^
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 && ^
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x64 /v:minimal /nologo && ^