ZrAdminNetCore/ZR.Admin.Grpc/ZR.Admin.Grpc.csproj
2025-06-25 14:06:22 +08:00

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>