0

Samples for grpc.core server implementation in .NET framework 4.7

We are planning to migrate from .NET framework to .NET core (.NET6). As part of this migration, we want to first move to grpc.core from WCF. When we searched for sample service implementation using grpc.core in .NET frameowrk 4.7, we ended up getting nothing. All the results were pointed to the implementation using grpcdotent in dotnet6.

1 Answers1

0

Here is a grpc.core server and client hello world example

This example's server project targets .NET Core 3.1 but you can essentially use the same code/approach for .NET 4.7

  • Thanks Cale .. Looked into it and it helped out. I also created a example for DotNetFramework specific. let me check whether i can push the changes. – Manikandan Nov 10 '22 at 11:35