blob: 1502f0634b7862aca04d39737564c091325b1221 [file] [log] [blame]
Brian Silverman9c614bc2016-02-15 20:20:02 -05001@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%