IceRpc.Protobuf.Tools
0.4.0.1
Prefix Reserved
dotnet add package IceRpc.Protobuf.Tools --version 0.4.0.1
NuGet\Install-Package IceRpc.Protobuf.Tools -Version 0.4.0.1
<PackageReference Include="IceRpc.Protobuf.Tools" Version="0.4.0.1"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add IceRpc.Protobuf.Tools --version 0.4.0.1
#r "nuget: IceRpc.Protobuf.Tools, 0.4.0.1"
// Install IceRpc.Protobuf.Tools as a Cake Addin #addin nuget:?package=IceRpc.Protobuf.Tools&version=0.4.0.1 // Install IceRpc.Protobuf.Tools as a Cake Tool #tool nuget:?package=IceRpc.Protobuf.Tools&version=0.4.0.1
Protobuf Tools for IceRPC
The IceRpc.Protobuf.Tools
NuGet package allows you to compile Protobuf definitions (in .proto
files) into C# code (in .cs
files)
within MSBuild projects.
This package includes the Protobuf compiler, protoc
, and the protoc-gen-icerpc-csharp
generator. The protoc
compiler is a native tool with binaries for Linux x64, Linux arm64, macOS x64, macOS arm64, and Windows x64. The
protoc-gen-icerpc-csharp
generator is a .NET program and requires .NET 8 or later.
Once you've added the IceRpc.Protobuf.Tools NuGet package to your project, the Protobuf files of your project are automatically compiled into C# files every time you build this project.
The protoc
compiler contains several built-in generators, including the C# generator which is responsible for
generating the Protobuf serialization and deserialization code for C#. In addition to these built-in generators,
protoc
also executes the external protoc-gen-icerpc-csharp
generator which is responsible for generating the
IceRPC + Protobuf integration code.
The protoc
C# generator generates a .cs
file for each .proto
file. The generated C# file has the same name
as the corresponding .proto
file, but with the name converted to Pascal case. For example, greeter.proto
is compiled
into Greeter.cs
.
The protoc-gen-icerpc-csharp
generator generates a .IceRpc.cs
file for each .proto
file. The generated C# file
has the same name as the corresponding .proto
file, but with the name converted to Pascal case. For example,
greeter.proto
is compiled into Greeter.IceRpc.cs
.
Protobuf files and Protobuf search path
The Protobuf compiler accepts two main inputs:
- the Protobuf files to compile into C# code (the Protobuf files)
- directories that contain imported Protobuf files (the Protobuf search path)
You select which files to include in your project's Protobuf files with the ProtoFile
item type. And you select which
paths to include in your project's Protobuf search path with the ProtoSearchPath
item type.
By default, all .proto
files located in your project's home directory and any of its subdirectories, recursively, are
included in ProtoFile
. You can prevent this auto-inclusion of .proto
files by setting either
EnableDefaultItems
or EnableDefaultProtoFileItems
to false
. The default value of these properties
is true
.
You can also add Protobuf files to your project explicitly. For example:
<ItemGroup>
<ProtoFile Include="../greeter.proto"/>
</ItemGroup>
This adds greeter.proto
to your project's Protobuf files even though this file is not in the project's home directory
or any of its subdirectories.
The Protobuf search path is an aggregate of the ProtoSearchPath
defined in your project (if any) and the
ProtoSearchPath
defined in NuGet packages referenced by your project.
For example, if your project's Protobuf files import files in directory common/proto
, set your ProtoSearchPath
as
follows:
<ItemGroup>
<ProtoSearchPath Include="$(MSBuildThisFileDirectory)../common/proto"/>
</ItemGroup>
ProtoFile item metadata
You can use the following ProtoFile
item metadata to customize the compilation of your Proto files. Each
unique set of options results in a separate execution of protoc
.
Name | Default | Description |
---|---|---|
AdditionalOptions | Specifies additional options to pass to [protoc ] compiler. |
|
OutputDir | generated | Sets the output directory for the generated code. This metadata corresponds to the --csharp_out and --icerpc-csharp_out options of protoc . |
Pack | false |
Specifies whether or not to include the items (Proto files) in the NuGet package. |
PackagePath | protobuf | Sets the target path in the NuGet package. Used only when Pack is true . |
Generated code and NuGet packages
You need to reference the IceRpc.Protobuf
NuGet package to compile the generated C# code. Referencing
IceRpc.Protobuf
makes your project reference transitively IceRpc, Google.Protobuf and
System.IO.Pipelines.
Protobuf compiler
This package includes the protoc
compiler binaries, and the Protobuf well-known type definitions from the
Google.Protobuf.Tools package. Additionally, it includes the protoc
ARM64 binaries
for Linux and macOS from the Google Protobuf release page.
Build telemetry
The IceRpc.Protobuf.Tools
package collects anonymous build telemetry data about general usage. Participation in this
program is optional, and you may opt out if you’d prefer not to share any information.
This package includes the IceRpc.ProtobufBuildTelemetry.Reporter
client, an IceRPC C# client that sends anonymous build
telemetry data over a secure connection to the IceRPC build telemetry server during the compilation of Protobuf files.
This data includes:
- The IceRPC version.
- The system's operating system, version, and platform architecture.
- The source of the telemetry data (
IceRpc.Protobuf.Tools
). - The number of Protobuf files being compiled.
- A SHA256 hash computed from the Protobuf files being compiled.
This data is used to help the IceRPC team understand how the tools are being used and to prioritize future development efforts. The data is stored in a private database and is not shared with any third parties.
To opt out of the build telemetry program, add the following property to your C# project file:
<PropertyGroup>
<IceRpcBuildTelemetry>false</IceRpcBuildTelemetry>
</PropertyGroup>
Setting this property to false
completely disables the computation and collection of telemetry.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on IceRpc.Protobuf.Tools:
Repository | Stars |
---|---|
icerpc/icerpc-csharp
A C# RPC framework built for QUIC, with bidirectional streaming, first-class async/await, and Protobuf support.
|