Questions tagged [protogen]
20 questions
1
vote
1 answer
How to generate .vb files from ProtoGen.exe
Please is there a switch in ProtoGen.exe to generate .vb files?
Generating the .cs files first then code converting is super tedious...
thanks!

Charles Okwuagwu
- 10,538
- 16
- 87
- 157
1
vote
1 answer
Protobuf-net Protogen generates DataFormat.TwosComplement for int32
I'm using Protogen included in protobuf-net r580 to compile the following .proto file:
message TestMessage2 {
required int32 someint = 1;
}
And I found strange the resulting code use TwosComplement wire format:
Private _someint As…

user1416197
- 155
- 1
- 7
0
votes
2 answers
getting Unimplemented name Error in generated go file from proto
Every time, I generate the code, I am getting this error:
this is my .proto file:
the command that, I use to generate the code is::
protoc pb/pb.proto --go-grpc_out=./pb

Niteesh Dubey
- 13
- 1
0
votes
1 answer
protobuf-net : why would generated class be missing setter?
Under what circumstances could protogen.exe applied to .proto file generate C# classes where each property has only a getter ( not setter ) ?
package MyLibrary.MyProto
import…

BaltoStar
- 8,165
- 17
- 59
- 91
0
votes
1 answer
protobuf-net protogen generate c# classes and corresponding interfaces from proto files
I am trying to write unit tests for my application and would like to have my proto-classes implement interfaces.
Preferably they would be generated together with the c# classes, but I can not find a way of doing this.
Is there a way?

TeeCee
- 37
- 4