Are prototxt file compilable? Are these really the same as the .proto files?
I have read What's the different between .proto and .prototxt file and this corresponding link and also this, however no where does it describe what do with the prototxt file.
Using:
protoc --proto_path=. --java_out=. test.proto
I get a test.java file.
However, protoc --proto_path=. --java_out=. test.prototxt
(a valid test.prototxt file, not just a renamed .proto file) does not compile. What am I missing and why is this not mentioned anywhere?