.net 核心 2.0 的 protobuf-net 端口
protobuf-net port to .net core 2.0
我需要 google .net core 2.0 上的协议缓冲区。
我知道官方 google 原型缓冲区实现在 .net core 2.0 上不可用,但是 protobuf-net 可以移植到 .net core 2.0 吗?
我尝试自己移植它,我看到库使用 AppDomain.CurrentDomain.DefineDynamicAssembly,它还没有移植到 .net 核心。
另外 .net WEBAPIController 是如何使用 google protocol buffer 的?
nuget 上的 Protobuf-net 已经支持 net standard 1.3 及以上版本,其中包含您需要的内容。您无需执行任何操作即可使用 protobuf-net。
我需要 google .net core 2.0 上的协议缓冲区。 我知道官方 google 原型缓冲区实现在 .net core 2.0 上不可用,但是 protobuf-net 可以移植到 .net core 2.0 吗?
我尝试自己移植它,我看到库使用 AppDomain.CurrentDomain.DefineDynamicAssembly,它还没有移植到 .net 核心。
另外 .net WEBAPIController 是如何使用 google protocol buffer 的?
nuget 上的 Protobuf-net 已经支持 net standard 1.3 及以上版本,其中包含您需要的内容。您无需执行任何操作即可使用 protobuf-net。