1@rem Builds Google.Protobuf NuGet packages
2
3@rem Adjust the location of nuget.exe
4set 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
9goto :EOF
10
11:error
12echo Failed!
13exit /b %errorlevel%
14