protobuf/csharp/build_packages.bat
Jon Skeet 10a8fb4e73 Move to dotnet cli for building, and .NET Core (netstandard1.0) as target platform (#1727)
Move to dotnet cli for building, and .NET Core (netstandard1.0) as target platform

This also updates the version number to 3.0.0-beta4
2016-07-14 22:01:47 +01:00

11 lines
174 B
Batchfile

@rem Builds Google.Protobuf NuGet packages
dotnet restore src
dotnet pack -c Release src\Google.Protobuf || goto :error
goto :EOF
:error
echo Failed!
exit /b %errorlevel%