123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net7.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DebugType>none</DebugType>
- <DebugSymbols>false</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="Protos\greet.proto" />
- </ItemGroup>
- <ItemGroup>
- <Protobuf Include="Protos\FileOper.proto" GrpcServices="Client" />
- <Protobuf Include="Protos\greet.proto" GrpcServices="Client" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Grpc.AspNetCore" Version="2.66.0" />
- <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
- </ItemGroup>
- </Project>
|