Set namespace of gRPC template (#9907)

This commit is contained in:
John Luo 2019-05-02 12:59:02 -07:00 committed by GitHub
parent 4cb86bc151
commit ea5e9556d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,7 @@
syntax = "proto3";
option csharp_namespace = "GrpcService_CSharp";
package Greet;
// The greeting service definition.

View File

@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Greet;
using Grpc.Core;
namespace GrpcService_CSharp