blob: d7205659f103a4655a606bbfe0adfe15eab69d78 (
plain)
1
2
3
4
5
6
7
8
9
10
|
@rem Builds Google.Protobuf NuGet packages
dotnet restore src/Google.Protobuf.sln
dotnet pack -c Release src/Google.Protobuf.sln || goto :error
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
|