Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
b1a921c7
Commit
b1a921c7
authored
May 13, 2015
by
Jan Tattermusch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add buildall script for mono
parent
d1183bba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
buildall.sh
csharp/buildall.sh
+22
-0
No files found.
csharp/buildall.sh
0 → 100755
View file @
b1a921c7
#!/bin/bash
# Use mono to build solution and run all tests.
# Adjust these to reflect the location of nunit-console in your system.
NUNIT_CONSOLE
=
nunit-console
# The rest you can leave intact
CONFIG
=
Release
KEYFILE
=
../keys/Google.ProtocolBuffers.snk
# TODO(jtattermusch): signing!
SRC
=
$(
dirname
$0
)
/src
set
-ex
echo
Building the solution.
xbuild /p:Configuration
=
$CONFIG
$SRC
/ProtocolBuffers.sln
echo
Running tests.
$NUNIT_CONSOLE
$SRC
/ProtocolBuffers.Test/bin/
$CONFIG
/Google.ProtocolBuffers.Test.dll
$NUNIT_CONSOLE
$SRC
/ProtocolBuffersLite.Test/bin/
$CONFIG
/Google.ProtocolBuffersLite.Test.dll
$NUNIT_CONSOLE
$SRC
/ProtocolBuffersLite.Test/bin/
$CONFIG
/Google.ProtocolBuffersMixedLite.Test.dll
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment