buildall.bat 255 B

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