The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
17 lines
489 B
17 lines
489 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>netstandard1.5</TargetFramework> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Google.Protobuf" Version="3.8.0" /> |
|
<PackageReference Include="Grpc" Version="2.23.0" /> |
|
<PackageReference Include="Grpc.Tools" Version="2.23.0" PrivateAssets="All" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Protobuf Include="../../../protos/helloworld.proto" Link="helloworld.proto" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|