aboutsummaryrefslogtreecommitdiff
path: root/protos/google
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-05-19 12:01:16 -0500
committerrogerk <devnull@localhost>2011-05-19 12:01:16 -0500
commitf1816beebe7f68a6e9380b964d93c1dee91fb277 (patch)
treec03f8e2d549a7ed71e243a1437085b9d7c976f42 /protos/google
parent68d831e3a48ea3a81b3791a24219bc3406b962b8 (diff)
downloadprotobuf-f1816beebe7f68a6e9380b964d93c1dee91fb277.tar.gz
protobuf-f1816beebe7f68a6e9380b964d93c1dee91fb277.tar.bz2
protobuf-f1816beebe7f68a6e9380b964d93c1dee91fb277.zip
- Added CSharpServiceType NONE to skip service generation.
- Defaulted service_generator_type to NONE - Added /protos/extest/unittest_generic_services.proto to test services - Migrated unit tests to use the new generic services for testing
Diffstat (limited to 'protos/google')
-rw-r--r--protos/google/protobuf/csharp_options.proto4
1 files changed, 3 insertions, 1 deletions
diff --git a/protos/google/protobuf/csharp_options.proto b/protos/google/protobuf/csharp_options.proto
index d9fe04e1..33a7b03d 100644
--- a/protos/google/protobuf/csharp_options.proto
+++ b/protos/google/protobuf/csharp_options.proto
@@ -58,10 +58,12 @@ message CSharpFileOptions {
// Controls how services are generated, GENERIC is the deprecated original implementation
// INTERFACE generates service interfaces only, RPCINTEROP generates interfaces and
// implementations using the included Windows RPC interop libarary.
- optional CSharpServiceType service_generator_type = 225 [default = GENERIC];
+ optional CSharpServiceType service_generator_type = 225 [default = NONE];
}
enum CSharpServiceType {
+ // Services are ignored by the generator
+ NONE = 0;
// Generates the original Java generic service implementations
GENERIC = 1;
// Generates an interface for the service and nothing else