1
0
tinklu-paslaugos/Lab2-grpc/ChatRoomContract/ChatRoomContract.csproj
2024-10-17 22:55:51 +03:00

24 lines
584 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<None Remove="Protos\service.proto" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="Protos\service.proto" GrpcServices="Both" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.49.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.66.0" />
</ItemGroup>
</Project>