aboutsummaryrefslogtreecommitdiff
path: root/protos
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2009-11-03 17:36:32 +0000
committerJon Skeet <skeet@pobox.com>2009-11-03 17:36:32 +0000
commitb075ff5c17b04efcd8ab8adee866456b0abf2195 (patch)
tree9186debb649fbbc1f0ffe2cd56f305749039048b /protos
parentb49d3c7834c9448e137d88c510f30963661ff7d9 (diff)
downloadprotobuf-b075ff5c17b04efcd8ab8adee866456b0abf2195.tar.gz
protobuf-b075ff5c17b04efcd8ab8adee866456b0abf2195.tar.bz2
protobuf-b075ff5c17b04efcd8ab8adee866456b0abf2195.zip
Added a flag to allow code contracts to be emitted
Diffstat (limited to 'protos')
-rw-r--r--protos/google/protobuf/csharp_options.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/protos/google/protobuf/csharp_options.proto b/protos/google/protobuf/csharp_options.proto
index 41deafa3..b58a5491 100644
--- a/protos/google/protobuf/csharp_options.proto
+++ b/protos/google/protobuf/csharp_options.proto
@@ -6,10 +6,11 @@ package google.protobuf;
message CSharpFileOptions {
optional string namespace = 1;
- optional string umbrella_classname= 2;
- optional bool public_classes = 3;
+ optional string umbrella_classname = 2;
+ optional bool public_classes = 3 [default = true];
optional bool multiple_files = 4;
optional bool nest_classes = 5;
+ optional bool code_contracts = 6;
}
extend FileOptions {