0
1
llucycodes42
The code references Proto files for Google.Protobuf and Grpc.Net.Client. It also references Grpc.Tools, which is a NuGet package.
Shortcut: g_r_p_c_client_csproj
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Protobuf Include="..\Proto\greet.proto" GrpcServices="Client" Link="Protos\greet.proto" />
<PackageReference Include="Google.Protobuf" Version="3.13.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.33.1" />
<PackageReference Include="Grpc.Tools" Version="2.33.1" PrivateAssets="All" />
</ItemGroup>
</Project>