aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added some ignore filesJon Skeet2008-08-141-0/+3
|
* Experimental (and currently unused) behaviour to determine whether or not a ↵Jon Skeet2008-08-143-0/+58
| | | | message has any required fields.
* Align delegates with .NET 3.5Jon Skeet2008-08-146-51/+41
|
* Use a switch instead of a map for WireFormat.Jon Skeet2008-08-143-17/+48
|
* Evil reflection optimisation.Jon Skeet2008-08-1411-51/+197
|
* Micro-optimisations around varints and strings.Jon Skeet2008-08-142-17/+86
|
* Use delegates instead of dynamic reflection.Jon Skeet2008-08-1421-423/+572
|
* isInitialized optimisation for reflection-based generated protosJon Skeet2008-08-141-0/+34
|
* Optimisations of IsInitialized and removal of unnecessary references.Jon Skeet2008-08-144-5/+41
|
* Addressbook samples.Jon Skeet2008-08-143-0/+152
|
* Removed accidental addition of test directory.Jon Skeet2008-08-1439-11016/+0
|
* Fixed a few TODOsJon Skeet2008-08-1439-0/+11016
|
* Abandon the 'self' namespace alias - we need to be able to import types in ↵Jon Skeet2008-08-1412-2460/+2437
| | | | other namespaces too.
* Signed the test assembly, and added InternalsVisibleTo. Some public members ↵Jon Skeet2008-08-145-20/+23
| | | | now internal again.
* Beginning to fix the TODOsJon Skeet2008-08-146-205/+189
|
* Removed EnumDescriptorIndexAttribute - not really necessary.Jon Skeet2008-08-144-40/+16
|
* Batch file to generate the bootstrapping proto filesJon Skeet2008-08-141-0/+9
|
* Copyright fixes, a bit of documentation, and removed unnecessary using ↵Jon Skeet2008-08-1470-181/+1039
| | | | directives.
* Finished service test with a mock.Jon Skeet2008-08-145-223/+169
|
* Fleshed out service interfaces, and wrote the simpler service tests. Mocking ↵Jon Skeet2008-08-144-10/+188
| | | | tests still to be done.
* Implemented text parsing.Jon Skeet2008-08-144-34/+536
|
* Lots of text formatting tests, but ignored the parsing ones for the moment.Jon Skeet2008-08-144-36/+514
|
* Extensions don't need to go under a separate type.Jon Skeet2008-08-147-27/+29
|
* More tests, and a bug fix.Jon Skeet2008-08-147-18/+212
|
* UnknownFieldSet tests, and a fix to repeated extension elements.Jon Skeet2008-08-149-4/+323
|
* Tidying up, and a couple of extra tests.Jon Skeet2008-08-145-34/+28
|
* The great generics revisiting.Jon Skeet2008-08-1436-1224/+1176
|
* TweaksJon Skeet2008-08-143-5/+10
|
* More tests, and implementation of UninitializedMessageException description.Jon Skeet2008-08-1419-261/+1086
|
* More tests, more fixes.Jon Skeet2008-08-1412-31/+867
|
* New unit tests and corresponding bug fixes.Jon Skeet2008-08-149-78/+455
|
* Added DynamicMessage and ExtendableBuilder, along with the first supporting ↵Jon Skeet2008-08-1428-111/+2494
| | | | tests.
* First unit test reading a complete message\!Jon Skeet2008-08-1414-52/+416
|
* Implemented GeneratedExtension, although list handling may be incorrect.Jon Skeet2008-08-1411-257/+318
|
* Initial support for services and extensions. Incomplete, but enough to get ↵Jon Skeet2008-08-1437-296/+16089
| | | | generated unit test files to compile.
* Implemented TextFormatterJon Skeet2008-08-144-15/+475
|
* Field accessor implementations complete (hopefully)Jon Skeet2008-08-1412-10/+437
|
* Update Makefile in terms of C# sources and keyfile command line optionJon Skeet2008-08-141-2/+1
| | | | committer: Jon Skeet <skeet@pobox.com>
* Update Makefile in terms of C# sources and keyfile command line optionJon Skeet2008-08-141-2/+14
| | | | committer: Jon Skeet <skeet@pobox.com>
* Fix default instance behaviour for repeated typesJon Skeet2008-08-142-17/+18
|
* Build all projects in the solutionJon Skeet2008-08-141-0/+4
|
* Removed Descriptor.cs which was an early attempt at generationJon Skeet2008-08-141-5715/+0
|
* Finish implementing GeneratedBuilder.Jon Skeet2008-08-143-11/+59
|
* Added a .gitignore file to make life simplerJon Skeet2008-08-141-0/+18
|
* Two more which should have been in the last commitJon Skeet2008-08-142-3/+10
|
* Descriptors are pretty much complete, with a slight issue of how to find the ↵Jon Skeet2008-08-1418-216/+1198
| | | | default type for a repeated field.
* Modified addressbook example with new optionsJon Skeet2008-08-141-2/+4
|
* Autogeneration now hopefully close to correct. Library builds! (Not finished ↵Jon Skeet2008-08-1442-699/+11952
| | | | though...)
* Patch from Miguel de Icaza: This introduces auto-detection of Mono to ↵Jon Skeet2008-08-147-2/+72
| | | | configure, and if found, builds and installs the runtime library, and provides a pkg-config file so developers can easily use it on Unix.
* Descriptor framework skeleton. Somewhat generic to avoid lots of code ↵Jon Skeet2008-08-1414-47/+382
| | | | duplication.