I am following this C# Quickstart tutorial for gRPC. I have come to this step where I have to use the following command to generate gRPC code:
%UserProfile%\.nuget\packages\Grpc.Tools.1.15.0\tools\windows_x86\protoc.exe -I../../protos --csharp_out Greeter --grpc_out Greeter ../../protos/helloworld.proto --plugin=protoc-gen-grpc=%UserProfile%\.nuget\packages\packages\Grpc.Tools.1.15.0\tools\windows_x86\grpc_csharp_plugin.exe
It doesn't work and what I get in the terminal after running commands above is this:
--grpc_out: protoc-gen-grpc: The system cannot find the path specified.
I don't know why the system cannot find the path since I have changed the path in the command so that it points to the files which need to be executed.