protobuf-csharp-port icon indicating copy to clipboard operation
protobuf-csharp-port copied to clipboard

Automatically exported from code.google.com/p/protobuf-csharp-port

Results 20 protobuf-csharp-port issues
Sort by recently updated
recently updated
newest added
trafficstars

See: https://developers.google.com/protocol-buffers/docs/proto?csw=1#enum Proto 2 - Language guide: > You can define aliases by assigning the same value to different enum constants. To do this you need to set the allow_alias...

``` Currently, trying to compile a .proto file using new "oneof" feature with protogen will make protoc display the following errors: meta_data2.proto:8:5: Expected "required", "optional", or "repeated". meta_data2.proto:8:19: Expected field...

Priority-Medium
Type-Defect
auto-migrated

for example: message SomethingList { repeated Something something= 1; } protoc.exe generate class SomethingList will have property SomethingList, this cause VS compile error; The .proto file is from old projects,...

We are evaluating Protocol Buffers (proto2) to implement data serialization for message exchanges between C++, C# and Java applications over an AMQP messaging middleware. The Java and C++ applications are...

When I build in IOS using Unity and run then I got this error log The type initializer for 'com.nct.nplay.proto.SystemMessage' threw an exception. (Filename: /Users/builduser/buildslave/unity/build/artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 37) System.TypeInitializationException: The type...

I needed the Windows Store 8.1 support for this library and since it was not there originally I did the port to PCL. This wasn't extremely hard, but please review...

``` What steps will reproduce the problem? 1. Just compile a ipa that using proto by mono 2. Put it to iphone 3. What is the expected output? What do...

Priority-Medium
Type-Defect
auto-migrated

Consider the following .proto file: ``` message TestMessage { enum Result { OK = 0; FAILED = 1; TIMEOUT = 2; } required Result result = 1 [default = OK];...

It would be great to have .NET Core support.

What steps will reproduce the problem? 1.Build a simple .proto file then convert into .cs file ( simple .proto file can just be a simple class with single data )...