Protocol Buffers - Google's data interchange format (grpc依赖) https://developers.google.com/protocol-buffers/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Protobuf Team Bot ac5a13ce75 Update dependencies in C# test project. 1 year ago
..
compatibility_tests/v3.0.0 Reorganize upb file structure 1 year ago
keys Auxillary -> Auxiliary 5 years ago
protos Shorten our license headers into an abbreviated form that references LICENSE instead of including it in full. 1 year ago
src Update dependencies in C# test project. 1 year ago
.editorconfig Adjust editor config to reflect cast conventions in C# libraries 2 years ago
.gitignore Rename C# files to indicate generated code (#10801) 2 years ago
BUILD.bazel [dotnet, csharp] Run tests for supported platforms .NET 6, .NET Framework 4.6.2 (#12378) 2 years ago
CHANGES.txt Fix a typo 1 year ago
Google.Protobuf.Tools.nuspec Main 202308091812 (#13489) 1 year ago
Google.Protobuf.Tools.targets Sync C# files to Piper 2 years ago
NuGet.Config Sync from Piper @425656941 3 years ago
README.md Update C#-specific README 2 years ago
build_packages.bat Sync from Piper @425656941 3 years ago
build_release.sh Fix C# Builds 2 years ago
build_tools.sh Auxillary -> Auxiliary 5 years ago
buildall.bat Auxillary -> Auxiliary 5 years ago
buildall.sh [dotnet, csharp] Run tests for supported platforms .NET 6, .NET Framework 4.6.2 (#12378) 2 years ago
generate_protos.sh Add unittest_retention.proto to csharp/generate_protos.sh 2 years ago
install_dotnet_sdk.ps1 Sync from Piper @425656941 3 years ago

README.md

This directory contains the C# Protocol Buffers runtime library.

Usage

The easiest way how to use C# protobufs is via the Google.Protobuf NuGet package. Just add the NuGet package to your VS project.

You will also want to install the Google.Protobuf.Tools NuGet package, which contains precompiled version of protoc.exe and a copy of well known .proto files under the package's tools directory.

To generate C# files from your .proto files, invoke protoc with the --csharp_out option.

Supported platforms

The runtime library is built as a class library, supporting targets of:

  • .NET 4.5+ (net45)
  • .NET Standard 1.1 and 2.0 (netstandard1.1 and netstandard2.0)
  • .NET 5+ (net50)

You should be able to use Protocol Buffers in Visual Studio 2012 and all later versions. This includes all code generated by protoc, which only uses features from C# 3 and earlier. When compiling generated code with old compilers (before C# 7.2) you need to define the GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE symbol in your project so that the generated classes don't implement IBufferMessage, which uses ref struct types.

Building

Open the src/Google.Protobuf.sln solution in Visual Studio 2022 or later.

Although users of this project are only expected to have Visual Studio 2012 or later, developers of the library are required to have Visual Studio 2022 or later, as the library uses C# 10 features in its implementation and runs tests under .NET 6. These features have no impact when using the compiled code - they're only relevant when building the Google.Protobuf assembly.

Testing

The unit tests use NUnit 3. Tests can be run using the Visual Studio Test Explorer or dotnet test.

.NET 3.5

We don't support .NET 3.5. It used to be feasible to build this library targeting .NET 3.5, but a number of changes requiring newer runtime/framework features have been added over time. While it would no doubt be possible to rework the current implementation to allow most of the functionality to be built in .NET 3.5, this would create an undue maintenance burden.

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/protocolbuffers/protobuf).

The previous project differs from this project in a number of ways:

  • The old code only supported proto2; the new code initially only supported proto3 (so no unknown fields, no required/optional distinction, no extensions); since then proto2 support has been added
  • The old code was based on immutable message types and builders for them
  • The old code did not support maps or oneof
  • The old code had its own JSON representation, whereas the new code uses the standard protobuf JSON representation
  • The old code had no notion of the "well-known types" which have special support in the new code
  • The old project supported some older platforms (such as older versions of Silverlight) which are not currently supported in the new project