Jakub Syty
Jakub Syty
This works without issues: ```csharp public static partial class FilePermissionMapper { public static partial FilePermissionResponse ToProtoResponse(this FilePermission filePermission); public static partial FilePermission FromProtoRequest(AddFilePermissionRequest addFilePermissionRequest); } public static partial class FilePermissionMapper...
> I added still no notification icon > Are you on Android 13?
Mine still crashes: [calendar.zip](https://github.com/user-attachments/files/20103081/calendar.zip)
Also, currently when i register the same client twice with different names both will be registered as Transient at the same service interface: https://github.com/grpc/grpc-dotnet/blob/c9d26719e8b2a8f03424cacbb168540e35a94b0b/src/Grpc.Net.ClientFactory/GrpcClientServiceExtensions.cs#L310 I think this might not be...
Anybody can help here? Right now i have a need to register the same client twice (but with different set of interceptors) and whenever i do the second registration -...
If anybody has the same issue and is interested in workaround i figured out this atrocity: ```csharp public static IHttpClientBuilder AddCustomGrpcClient(this IServiceCollection services, Action configureClient ) where TClient : class...