[protobuf] Roadmap / Nightly builds

2018-10-17 Thread Benjamin Krämer
Is there a roadmap or are there nightly builds (like we have them at gRPC ) for protobufs? Haven't found anything on the github repo or in the mailing group. If not, is there a plan when to expect the next release including the latest commits? For me, it's usually easi

[protobuf] Re: Protobuf : How to generate the descriptor file dynamically from .proto

2016-05-18 Thread Benjamin Krämer
I had a similar discussion some months ago. What you want is to generate the TypeRegistry at Runtime. I did this by using the following approach: https://groups.google.com/d/msg/protobuf/fnhsS9tVhyc/9pkapOl-AQAJ Therefore you don't have to gereate the file descriptors but just use the ones you

Re: [protobuf] How to erase particular field with MergeFrom()

2016-05-18 Thread Benjamin Krämer
And instead of encapsulating the field mask into a new message, you should be alright to just use google.protobuf.FieldMask as it is already a message by itself (in case that you don't add other data to RepAndOptMask of course). Am Dienstag, 17. Mai 2016 10:51:04 UTC+2 schrieb Denis Bakhvalov:

[protobuf] Re: DescriptionPool / DynamicMessages in C# library

2016-03-09 Thread Benjamin Krämer
Hi Jon, Am Mittwoch, 9. März 2016 13:59:32 UTC+1 schrieb Jon Skeet: > > Indeed there isn't. It's not clear to me at what point messages would get > registered - after all, a new assembly with extra messages could be loaded > at any point. > I'm not completely up to date on module initialization

[protobuf] DescriptionPool / DynamicMessages in C# library

2016-03-08 Thread Benjamin Krämer
I have ported the MessageDifferencer from C++ to C# since I need to look for changes in various protos. The only thing missing is the unpacking of the Any messages. Therefore I would like to get a descriptor for which I know the name and which is also compiled into the application. In C++, I ca