26 lines
881 B
XML
26 lines
881 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Protos\group.proto" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.76.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.80.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<Protobuf Include="Protos\conversation.proto" GrpcServices="Both" />
|
|
<Protobuf Include="Protos\user.proto" GrpcServices="Both" />
|
|
<Protobuf Include="Protos\contact.proto" GrpcServices="Both" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|