26 lines
815 B
XML
26 lines
815 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.21.5" />
|
|
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.49.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.49.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="..\RankingService\Protos\ranking.proto" GrpcServices="Client">
|
|
<Link>Protos\ranking.proto</Link>
|
|
</Protobuf>
|
|
</ItemGroup>
|
|
|
|
</Project>
|