22 lines
840 B
XML
22 lines
840 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.28.2" />
|
|
<PackageReference Include="Grpc.Core.Api" Version="2.66.0" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.66.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.67.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<Protobuf Include="..\Flawless.Shared\Protos\*.proto" GrpcServices="Client"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|