Reputation: 742
According to official grpc documentation, the grpc for C# requires at least .NET 4.5 framework.
I have a project that should be supported on Windows XP which is running .NET 3.5.
Is there any porting of grpc that can run on .NET 3.5?
Upvotes: 1
Views: 3118
Reputation: 21
You can try this out. it is claimed to be able to run on Windows XP SP3. The runtime Grpc.Core is running with .Net Framework 4.0
https://github.com/gavxin/grpc-win-xp
Upvotes: 2
Reputation: 1663
No plans to support .NET 3.5 - it's way too old and lacks some important APIs currently used by gRPC (most importantly async/await). More detail is here: https://github.com/grpc/grpc/issues/7880
Upvotes: 3