Is there a way for protobuf-net to automatically encode DateTime values in UTC but decode with ToLocalTime?
I'm passing messages between systems in different time zone and would like each DateTime property in my DTO' to be serialized as UTC (essentially automatically call ToUniversalTime before encoding) and decode in LocalTime so the systems receiving the messages automatically can operate on the DateTime Properties in LocalTime, so developers don't have to remember calling ToLocalTime on each property for DTO's received over the wire?