aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/AddressBook/Addressbook.cs
Commit message (Collapse)AuthorAgeFilesLines
* Changes to generated code from previous commitJon Skeet2016-07-041-5/+50
|
* Regenerate all C# code and make it compileJon Skeet2016-04-201-8/+8
| | | | JSON tests fail, as we're not using OriginalNameAttribute yet.
* Generated code changes from previous commitJon Skeet2016-02-041-3/+3
|
* Generated code for GeneratedCodeInfo changeJon Skeet2016-02-041-3/+3
|
* Generated code changes from previous commit.Jon Skeet2015-12-151-3/+6
|
* Generated code changes for previous commit (basically ↵Jon Skeet2015-11-221-1/+1
| | | | InternalBuildGeneratedFileFrom => FromGeneratedCode)
* Generated code from previous commit.Jon Skeet2015-11-191-2/+2
|
* Generated code changes and manual changes for previous commit.Jon Skeet2015-11-091-4/+4
|
* Generated code from previous commit.Jon Skeet2015-10-011-0/+13
|
* Generated code changes for previous commit.Jon Skeet2015-09-291-2/+2
|
* Generated code for previous commitJon Skeet2015-09-291-0/+3
|
* Regenerated code. Most changes are whitespace, removing trailing spaces.Jon Skeet2015-09-011-8/+8
| | | | Other changes are due to the well-known types changing without us regenerating.
* Generated code for previous commit.Jon Skeet2015-08-061-12/+3
|
* Generated code changes for previous commit.Jon Skeet2015-08-051-9/+3
|
* Generated code changes for previous commit.Jon Skeet2015-08-051-0/+3
|
* Generated code for previous commit.Jon Skeet2015-07-301-3/+3
|
* Generated code from previous commit.Jon Skeet2015-07-301-9/+0
|
* regenerate codeJan Tattermusch2015-07-291-28/+0
|
* Generated code for previous commit.Jon Skeet2015-07-221-15/+5
|
* Generated code changes following previous commit.Jon Skeet2015-07-211-22/+15
|
* regenerate Addressbook.csJan Tattermusch2015-07-201-39/+39
|
* Generated code for well-known typesJon Skeet2015-07-141-3/+3
|
* Changing reflection namespace (part 2)Jon Skeet2015-07-141-17/+17
| | | | Generated code changes from previous commit
* Generated code changes for previous submitJon Skeet2015-07-101-3/+3
|
* Use the new JsonFormatter to implement ToString on generated messages.Jon Skeet2015-07-101-0/+12
|
* Regenerated code due to previous commit.Jon Skeet2015-07-091-20/+32
| | | | Note that now we need a proto3 version of addressbook.proto. This may affect other platforms, and could do with an overhaul to follow proto3 conventions anyway (e.g. repeated field names). Will need to think about that carefully before merging into master. Raised issue #565 for this.
* Changes to generated code due to previous commit.Jon Skeet2015-07-091-29/+20
|
* First pass (not yet compiling) at removing all the array handling code from ↵Jon Skeet2015-06-301-20/+10
| | | | | | | Coded*Stream. Prod code works, but some tests are broken. Obviously those need fixing, then more tests, and review benchmarks.
* More cleanup, based around searches for "Google.ProtocolBuffers"Jon Skeet2015-06-261-31/+31
| | | | | | | - Remove some old proto2-based C#-only messages - Remove the "build" directory which only contained out-of-date files - Remove the csharp_namespace option from proto2 messages - Change "Google.ProtocolBuffers" to "Google.Protobuf" in other messages
* Generated code changes for previous commit.Jon Skeet2015-06-261-3/+3
|
* Generated code changes due to map changes.Jon Skeet2015-06-251-3/+6
| | | | (Primarily this is starting the hash code of messages at a non-zero value...)
* Implement freezing for messages and repeated fields.Jon Skeet2015-06-241-10/+52
| | | | Fixes issue #523.
* Generated code changes from previous commit.Jon Skeet2015-06-231-3/+3
|
* Implement Clone.Jon Skeet2015-06-231-6/+28
| | | | Fixes issue #527.
* Minor cleanup.Jon Skeet2015-06-191-2/+2
| | | | | | | | - Make some members internal - Remove a lot of FrameworkPortability that isn't required - Start adding documentation comments - Remove some more group-based members - Not passing in "the last tag read" into Read*Array, g
* Use the fact that we know the tag size and bytes at codegen time to optimize.Jon Skeet2015-06-171-12/+19
|
* Regenerate proto filesJon Skeet2015-06-121-22/+30
|
* Update the AddressBook tutorial to reflect the mutable design.Jon Skeet2015-06-121-975/+250
|
* Change the C# enum generator inherit from primitive generatorJie Luo2015-05-291-1/+1
|
* Update C# solution and AddressBook project.Jon Skeet2015-04-291-0/+1158
Move to a single solution file containing all of the C# projects, but no other solution folders - it's easier to edit those files outside VS than keep adding and removing them from the project. The AddressBook protos have been regenerated (with a change to the example proto which I haven't included in this change - I'll wait for us to decide exactly what we're doing with namespaces before changing protos outside the csharp directory. Note that now we've got Addressbook.cs which contains AddressBook and Addressbook classes. It's bad enough that we've got a class called AddressBook within a namespace of AddressBook (hard to get away from) but having things vary just by case is nasty. This is more evidence that an option for renaming the file and descriptor class would be welcome. (A single option can probably handle both.)