Reputation: 1215
I am able to use gRPC within a C# desktop application.
I tried to install the nuget gRPC package for a WUA but I got a lot of errors:
Grpc.Core 1.1.0 is not compatible with UAP,Version=v10.0 (win10-x64)
and I could not install it. Is there any implementation for WinRT?
Upvotes: 1
Views: 1162
Reputation: 1663
Unfortunately, gRPC C# currently doesn't support Universal Windows Applications. We support desktop .NET45+ and netstandard1.5+ (and therefore also ASP.NET core). Please see https://github.com/grpc/grpc/issues/8636 for more details.
Upvotes: 1