После обновления Grpc.Core до 2.23 получение
Метод не найден: 'Void Grpc.Core.ClientBase`1..ctor (Grpc.Core.Channel)'
в
public MyClient(IConfiguration config, ILogger<MyClient> logger)
{
var thisConfig = config.GetGRPCConfigObject();
var channel = new Channel($"{thisConfig.HostName}:{thisConfig.Port}", ChannelCredentials.Insecure);
this.Client = new MyPackage.ServiceClient(channel); // exception here
this.Logger = logger;
}
как построить ServiceClient в 2.23?