aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/build_packages.bat
blob: fab80b0e088c3696bbe8f2317488fdfd47ea5fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@rem Builds NuGet packages

@rem Adjust the location of nuget.exe
set NUGET=C:\nuget\nuget.exe

@call buildall.bat || goto :error

%NUGET% pack Grpc.Core\Grpc.Core.nuspec || goto :error
%NUGET% pack Grpc.Auth\Grpc.Auth.nuspec || goto :error
%NUGET% pack Grpc.nuspec || goto :error

goto :EOF

:error
echo Failed!
exit /b %errorlevel%