Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame^] | 1 | @rem Builds Google.Protobuf NuGet packages |
2 | |||||
3 | @rem Adjust the location of nuget.exe | ||||
4 | set NUGET=C:\nuget\nuget.exe | ||||
5 | |||||
6 | @rem Build src/Google.Protobuf.sln solution in Release configuration first. | ||||
7 | %NUGET% pack src\Google.Protobuf\Google.Protobuf.nuspec -Symbols || goto :error | ||||
8 | |||||
9 | goto :EOF | ||||
10 | |||||
11 | :error | ||||
12 | echo Failed! | ||||
13 | exit /b %errorlevel% |