GrpcClientTest.csproj 819 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net7.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  9. <DebugType>none</DebugType>
  10. <DebugSymbols>false</DebugSymbols>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <None Remove="Protos\greet.proto" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Protobuf Include="Protos\FileOper.proto" GrpcServices="Client" />
  17. <Protobuf Include="Protos\greet.proto" GrpcServices="Client" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Grpc.AspNetCore" Version="2.66.0" />
  21. <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
  22. </ItemGroup>
  23. </Project>