I have serialized an object using Protobuf-net , in my .NET application, with relative ease. I also get the .proto file that protobuf-net generated, using GetProto() command.
In the .NET generated .proto file, my GUID fields get a type of "bcl.guid".
Now I wish to compile the .proto file in C++ so I can deserialize the data.
However, C++ protoc.exe compiler does not know how to interpret bcl.guid, and throws an error message "VideoAudioStructs.proto:11:13: "Guid" is not defined." What do I do with this?