This is confusing, you're mentioning that you're using Grpc.Net.Client, which is the grpc-dotnet implementation of gRPC in C# (and has no native components).
The error "SymFromAddr in dbghelp.dll is not supported for this application type. grpc_csharp_ext.x64.dll calls this API." seems related to the (legacy) gRPC C# implementation from the Grpc.Core nuget package. If you can use Grpc.Net.Client exclusively (and not rely on Grpc.Core), that should solve your problems. Also note that we recommend to use Grpc.Net.Client anyway (due to https://grpc.io/blog/grpc-csharp-future/) On Thursday, February 3, 2022 at 7:20:11 PM UTC+1 [email protected] wrote: > I have a Xamarin/UWP app that uses gRPC. It includes the following nuget > packages: > > Grpc.Net.Client (2.42.0) > Grpc.Net.Client.Web (2.42.0) > Grpc.Tools (2.42.0) > > When I submit the app to the Microsoft Store, I get the following failures: > > API SymFromAddr in dbghelp.dll is not supported for this application type. > grpc_csharp_ext.x64.dll calls this API. > API SymInitialize in dbghelp.dll is not supported for this application > type. grpc_csharp_ext.x64.dll calls this API. > API SymSetOptions in dbghelp.dll is not supported for this application > type. grpc_csharp_ext.x64.dll calls this API. > > Any idea how to work around this? > > Regards, > Arthur > -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/grpc-io/b53d1696-767e-4906-b281-39e5eb4cea90n%40googlegroups.com.
