I am trying to create a common protobuf message that is to be used across multiple C# NuGets, kind of like a message header.
I have kept the common proto files in another repository and and am using it as a submodule for those C# NuGets repos.
Compilation seems fine when packing the individual NuGets.
However, when I have a C# microservice project and try to use the NuGets, I get ambiguity errors for the common messages.
Am I approaching the problem in the correct manner? Or is there another way I should go about this? Thanks!