29 lines
854 B
XML
29 lines
854 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Services\FileTransferService.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\greet.proto" GrpcServices="Both" />
|
|
<Protobuf Include="Protos\block.proto" GrpcServices="Client" />
|
|
<Protobuf Include="Protos\my_diary.proto" GrpcServices="Server" />
|
|
<Protobuf Include="Protos\FileTransfer.proto" GrpcServices="Server" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.49.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ZR.Service\ZR.Service.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|