10a8fb4e73
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
11 lines
174 B
Batchfile
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%
|