xref: /aosp_15_r20/external/cronet/third_party/protobuf/csharp/buildall.bat (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
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