mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
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.
20 lines
631 B
20 lines
631 B
5 years ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Google.Protobuf" Version="3.12.2" />
|
||
|
<PackageReference Include="Grpc.Core" Version="2.29.0" />
|
||
|
<PackageReference Include="Grpc.HealthCheck" Version="2.29.0" />
|
||
|
<PackageReference Include="Grpc.Reflection" Version="2.29.0"/>
|
||
|
<PackageReference Include="Grpc.Tools" Version="2.29.0" PrivateAssets="All" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Protobuf Include="../../../protos/helloworld.proto" Link="helloworld.proto" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|