Merge pull request #1239 from jskeet/call_generate_protos

Generate C# code whenever descriptor.proto changes
This commit is contained in:
Jon Skeet 2016-02-18 06:45:51 +00:00
commit abc09f795e
2 changed files with 6 additions and 1 deletions

View file

@ -6,7 +6,7 @@
set -ex
# cd to repository root
cd $(dirname $0)/..
pushd $(dirname $0)/..
# Protocol buffer compiler to use. If the PROTOC variable is set,
# use that. Otherwise, probe for expected locations under both

View file

@ -96,3 +96,8 @@ if test -x objectivec/generate_descriptors_proto.sh; then
echo "Generating messages for objc."
objectivec/generate_descriptors_proto.sh $@
fi
if test -x csharp/generate_protos.sh; then
echo "Generating messages for C#."
csharp/generate_protos.sh $@
fi