mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-15 02:17:56 +08:00
3147190f3d
Move pugixml project file for VS2015 to scripts/ and unify the output file structure similar to old VS201x projects. Remove test projects and solution since they are not required for building. Provide more accurate information in the package script and handle build errors during package construction properly.
9 lines
520 B
Batchfile
9 lines
520 B
Batchfile
@echo off
|
|
|
|
"%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 && ^
|
|
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x64 /v:minimal /nologo && ^
|
|
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x64 /v:minimal /nologo && ^
|
|
powershell Write-NuGetPackage nuget.autopkg
|