blob: 315c1501c43a7b0752186e85957579b3252e58e5 [file] [log] [blame]
Jan Tattermusch46feed02015-07-10 15:23:28 -07001@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/ProtocolBuffers.sln solution in Release configuration first.
7%NUGET% pack src\ProtocolBuffers\Google.Protobuf.nuspec -Symbols || goto :error
8
9goto :EOF
10
11:error
12echo Failed!
13exit /b %errorlevel%