Set namespace of gRPC template (#9907)
This commit is contained in:
parent
4cb86bc151
commit
ea5e9556d5
|
|
@ -1,5 +1,7 @@
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
|
option csharp_namespace = "GrpcService_CSharp";
|
||||||
|
|
||||||
package Greet;
|
package Greet;
|
||||||
|
|
||||||
// The greeting service definition.
|
// The greeting service definition.
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Greet;
|
|
||||||
using Grpc.Core;
|
using Grpc.Core;
|
||||||
|
|
||||||
namespace GrpcService_CSharp
|
namespace GrpcService_CSharp
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue