diff options
author | Stephen Daudell <s.daudell@boldwebservices.com> | 2016-08-04 14:53:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-04 14:53:47 -0500 |
commit | 97a6f65200bc61a5a5bec657a835f33ec902aab7 (patch) | |
tree | a51a5fced1f04eb6c4ff119ca9ee7921aa121cdb | |
parent | afe73da928005f53ec0a2ce2f53c9e6120290285 (diff) |
Potential fix for build issues.
-rw-r--r-- | scripts/nuget_build.bat | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/nuget_build.bat b/scripts/nuget_build.bat index cf942ea..588f036 100644 --- a/scripts/nuget_build.bat +++ b/scripts/nuget_build.bat @@ -1,13 +1,11 @@ @echo off cd %~dp0 -"%VS120COMNTOOLS%\VsMSBuildCmd.bat" && ^ +"%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 - -"%VS140COMNTOOLS%\VsMSBuildCmd.bat" && ^ +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 && ^ |