protoc --proto_path=C:\Users\Никита\source\repos\Billing\Billing\Pro ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (C:\Users\═шъшЄр...does not exist.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Services\BillingService.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="Protos\Billing.proto" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.47.0" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="Protos\Billing.proto" GrpcServices="Both" ProtoCompile="True" />
</ItemGroup>
</Project>
syntax = "proto3";
package billing;
option csharp_namespace = "Billing";
service Billing {
rpc ListUsers (None) returns (stream UserProfile);
rpc CoinsEmission (EmissionAmount) returns (Response);
rpc MoveCoins (MoveCoinsTransaction) returns (Response);
rpc LongestHistoryCoin (None) returns (Coin);
}