I have a VS 2019 ASP.NET gRPC Server project. It has 2 proto files in the same folder:
Protos\mainsvc.proto
Protos\enums.proto
The enums.proto contains a declaration some of common enums which I'd like to use in multiple proto files. How can I import his enum.proto file to the mainsvc.proto? Now I have:
syntax = "proto3";
option csharp_namespace = "MyGrpcService";
package MyServer;
import "enums.proto"; // <- error: cannot find the file.
import "google/protobuf/timestamp.proto"; // <- its OK