19 lines
497 B
XML
19 lines
497 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="protobuf-net.Grpc" Version="1.2.2" />
|
|
<PackageReference Include="protobuf-net.Grpc.AspNetCore" Version="1.2.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\EonaCat.gRPC.Core\EonaCat.gRPC.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|