Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(490)

Side by Side Diff: third_party/protobuf/csharp/buildall.sh

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/bash
2 # Use mono to build solution and run all tests.
3
4 # Adjust these to reflect the location of nunit-console in your system.
5 NUNIT_CONSOLE=nunit-console
6
7 # The rest you can leave intact
8 CONFIG=Release
9 SRC=$(dirname $0)/src
10
11 set -ex
12
13 echo Building the solution.
14 xbuild /p:Configuration=$CONFIG $SRC/Google.Protobuf.sln
15
16 echo Running tests.
17 $NUNIT_CONSOLE $SRC/Google.Protobuf.Test/bin/$CONFIG/Google.Protobuf.Test.dll
OLDNEW
« no previous file with comments | « third_party/protobuf/csharp/build_packages.bat ('k') | third_party/protobuf/csharp/generate_protos.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698