aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-08-14 20:33:30 +0100
committerJon Skeet <skeet@pobox.com>2008-08-14 20:33:30 +0100
commit734746ed551ae626b90570a6b5b8cad0d12d8787 (patch)
treea4ace6a16c5b711ea07420861a05f2790c73fcfc /examples
parentfe7bb26214916d0eec25e7690ff3580477ede510 (diff)
downloadprotobuf-734746ed551ae626b90570a6b5b8cad0d12d8787.tar.gz
protobuf-734746ed551ae626b90570a6b5b8cad0d12d8787.tar.bz2
protobuf-734746ed551ae626b90570a6b5b8cad0d12d8787.zip
Added C# options
Diffstat (limited to 'examples')
-rw-r--r--examples/addressbook.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/addressbook.proto b/examples/addressbook.proto
index b14829e9..df0037b9 100644
--- a/examples/addressbook.proto
+++ b/examples/addressbook.proto
@@ -5,6 +5,10 @@ package tutorial;
option java_package = "com.example.tutorial";
option java_outer_classname = "AddressBookProtos";
+option csharp_namespace = "Tutorial";
+option csharp_outer_classname = "AddressBookProtos";
+option csharp_multiple_files = true;
+
message Person {
required string name = 1;
required int32 id = 2; // Unique ID number for this person.