blob: 821ffb3102bec677893fef463c00bda4a852cc1b [file] [log] [blame]
Jan Tattermusch79c32b12019-03-12 04:05:37 -04001@rem Builds Google.Protobuf and runs the tests
2
3dotnet build src/Google.Protobuf.sln || goto :error
4
5echo Running tests.
6
Jan Tattermusche6a22c92019-03-12 04:58:35 -04007dotnet test src/Google.Protobuf.Test/Google.Protobuf.Test.csproj || goto :error
Jan Tattermusch79c32b12019-03-12 04:05:37 -04008
9goto :EOF
10
11:error
12echo Failed!
13exit /b %errorlevel%