Jan Tattermusch | 79c32b1 | 2019-03-12 04:05:37 -0400 | [diff] [blame] | 1 | @rem Builds Google.Protobuf and runs the tests |
2 | |||||
3 | dotnet build src/Google.Protobuf.sln || goto :error | ||||
4 | |||||
5 | echo Running tests. | ||||
6 | |||||
Jan Tattermusch | e6a22c9 | 2019-03-12 04:58:35 -0400 | [diff] [blame] | 7 | dotnet test src/Google.Protobuf.Test/Google.Protobuf.Test.csproj || goto :error |
Jan Tattermusch | 79c32b1 | 2019-03-12 04:05:37 -0400 | [diff] [blame] | 8 | |
9 | goto :EOF | ||||
10 | |||||
11 | :error | ||||
12 | echo Failed! | ||||
13 | exit /b %errorlevel% |