I am working with a gRPC service project that was generated by Visual Studio. I have two proto files located in the same "Protos" directory. I have one proto the has an import for the other proto file. It appears to find the file but I am not able to reference any of the messages from the other. When I do I get a "blahblah" is not defined error. I have taken some screenshots of the situation. Any help would be very much appreciated!
Asked
Active
Viewed 1,345 times
1 Answers
3
They are in different package
spaces; try thing.ThingRequest
, or .thing.ThingRequest
(the leading .
means "absolute", like a uri starting with /
)

Marc Gravell
- 1,026,079
- 266
- 2,566
- 2,900
-
That worked! This was driving me crazy! – user3383579 Sep 28 '21 at 13:36