var config = GrpcNetRemoteConfig
.BindToLocalhost()
.WithProtoMessages(MessageReflection.Descriptor)
.WithRemoteKind("echo",Props.FromProducer(()=> new EchoActor()))
.WithChannelOptions(new Grpc.Net.Client.GrpcChannelOptions
{
CompressionProviders =new[] {
new GzipCompressionProvider(CompressionLevel.Fastest)
}
});
but use v1.7 this is no problem。