Jon Skeet 0da4a89c97 Knock-on effects of moving GetSampleMessage. 10 년 전
..
keys 84fa3e2bbc Imported protobuf-csharp-port into csharp/ tree 10 년 전
protos 8d83f8d13e Fix for doubly-nested types - issue #307. 10 년 전
src 0da4a89c97 Knock-on effects of moving GetSampleMessage. 10 년 전
.gitignore 6f4bdffbe5 adding what was missing in .gitignore 10 년 전
CHANGES.txt e77878ebc7 Updated readme.md and changes.txt, removed old license.txt 10 년 전
README.md 8e9dd12b3a Update the readme to give more context of what's going on. 10 년 전
buildall.sh e75a10d8ff Fix or delete old projects. 10 년 전
generate_protos.sh c12833104f Tweaks and more tests for maps 10 년 전

README.md

This directory contains the C# Protocol Buffers runtime library.

Warning: experimental!

This code is still under significant churn. Unlike the original port, it only supports proto3 (but not all of proto3 yet) - there are no unknown fields or extensions, for example. protoc will (eventually) deliberately fail if it is asked to generate C# code for proto2 messages other than descriptor.proto, which is still required for reflection. (It's currently exposed publicly, but won't be eventually.)

Also unlike the original port, the new version embraces mutability - there are no builder types. We plan to add "freezing" operations as well as cloning, however.

Usage

The easiest way to use C# protocol buffers in your project is to use the Google.ProtocolBuffers NuGet package. This package is the legacy package for C# protocol buffers, but it will work fine with C# code generated by protoc if you use proto2 syntax (The API of the runtime library haven't changed so far).

We will definitely release a new NuGet package for the runtime library in the future. The new runtime library WILL contain significant semantic, backwardly-incompatible changes in proto handling (mostly because we will be adding proto3 support and we will be using that oportunity to make some design changes). So keep in mind that you will need to regenerate your proto files and switch to a new NuGet package once the new version of runtime library becomes available.

Building

Open the src/ProtocolBuffers.sln solution in Visual Studio. Click "Build solution" to build the solution. You should be able to run the NUnit test from Test Explorer (you might need to install NUnit Visual Studio add-in).

Supported Visual Studio versions are VS2013 (update 4) and VS2015. On Linux, you can also use Monodevelop 5.9 (older versions might work fine).

History of C# protobufs

This subtree was originally imported from https://github.com/jskeet/protobuf-csharp-port and represents the latest development version of C# protobufs, that will now be developed and maintained by Google. All the development will be done in open, under this repository (https://github.com/google/protobuf).