aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jon Skeet <jonskeet@google.com>2016-02-15 10:33:13 +0000
committerGravatar Jon Skeet <jonskeet@google.com>2016-02-15 10:33:13 +0000
commit957e877d523cadd7b454c38789b6ff757796cee8 (patch)
treeceb8a5dfda587f6293ae74687d81f6ce66cac037
parente35e24800fb8d694bdeea5fd63dc7d1b14d68723 (diff)
Generate C# code whenever descriptor.proto changes
This is a start to fixing issue #1212. It won't help for test protos, conformance etc, but it will definitely be better than nothing, and would have highlighted a change in descriptor.proto which broken C# earlier.
-rwxr-xr-xcsharp/generate_protos.sh2
-rwxr-xr-xgenerate_descriptor_proto.sh5
2 files changed, 6 insertions, 1 deletions
diff --git a/csharp/generate_protos.sh b/csharp/generate_protos.sh
index 9899097d..d979aa52 100755
--- a/csharp/generate_protos.sh
+++ b/csharp/generate_protos.sh
@@ -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
diff --git a/generate_descriptor_proto.sh b/generate_descriptor_proto.sh
index 44006b2c..81b8a0d6 100755
--- a/generate_descriptor_proto.sh
+++ b/generate_descriptor_proto.sh
@@ -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