21 lines
560 B
XML
21 lines
560 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.30.2" />
|
|
<PackageReference Include="Grpc" Version="2.46.6" />
|
|
<PackageReference Include="Grpc.Core" Version="2.46.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\dependency\proto\Proto.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|