Тип или имя пространства имен GroundTruth не существует в пространстве имен Osi3 (отсутствует ссылка на сборку?) - PullRequest
0 голосов
/ 24 августа 2018

Я пытался собрать файлы .cs из .proto через grpc .., но файл содержит много ошибок, которые я не могу устранить.

.proto файл

syntax = "proto3";


import "osi_groundtruth.proto";

package osi3;
service Groundtruthdata {
  // rpc ProcessGroundTruth(trial) returns(Empty) {}
   rpc ProcessGroundTruth(GroundTruth) returns(Empty){}
   rpc SayHello (HelloRequest) returns (HelloReply) {}
}
//message trial{
//  GroundTruth gt = 1;
//}

message Empty {
  string result = 1;
}
// The request message containing the user's name.
message HelloRequest {
  string name = 1;
}

// The response message containing the greetings
message HelloReply {
  string message = 1;
}

и сгенерированные ошибки код C # журнал ошибок

...