1@rem Builds Google.Protobuf and runs the tests 2 3dotnet build src/Google.Protobuf.sln || goto :error 4 5echo Running tests. 6 7dotnet test src/Google.Protobuf.Test/Google.Protobuf.Test.csproj || goto :error 8 9goto :EOF 10 11:error 12echo Failed! 13exit /b %errorlevel% 14