aboutsummaryrefslogtreecommitdiff
path: root/protos
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2010-05-19 22:15:45 +0100
committerJon Skeet <skeet@pobox.com>2010-05-19 22:15:45 +0100
commit706c5f6985a8c10325e4c2b833859a397513fe87 (patch)
tree31efa35f370d4d746546f8095a1ec101fee5b46b /protos
parent290089ab7c4f35ccac530b7045c8bd5766a0b1be (diff)
downloadprotobuf-706c5f6985a8c10325e4c2b833859a397513fe87.tar.gz
protobuf-706c5f6985a8c10325e4c2b833859a397513fe87.tar.bz2
protobuf-706c5f6985a8c10325e4c2b833859a397513fe87.zip
Add option to remove CLSCompliance attribute
Diffstat (limited to 'protos')
-rw-r--r--protos/google/protobuf/csharp_options.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/protos/google/protobuf/csharp_options.proto b/protos/google/protobuf/csharp_options.proto
index 8a27046e..184eef20 100644
--- a/protos/google/protobuf/csharp_options.proto
+++ b/protos/google/protobuf/csharp_options.proto
@@ -35,6 +35,9 @@ message CSharpFileOptions {
// Create subdirectories for namespaces, e.g. namespace "Foo.Bar"
// would generate files within [output directory]/Foo/Bar
optional bool expand_namespace_directories = 7;
+
+ // Generate attributes indicating non-CLS-compliance
+ optional bool cls_compliance = 8 [default = true];
}
extend FileOptions {