gRPC Server 구성1. ASP.NET Core gRPC 서비스 프로젝트 생성2. proto 파일 정의syntax = "proto3"; option csharp_namespace = "GrpcServer"; package greet; // The greeting service definition.service Greeter { // Sends a greeting rpc SayHello (HelloRequest) returns (HelloReply);} // The request message containing the user's name.message HelloRequest { string name = 1;} // The response message containing the greetin..