17 lines
444 B
XML
17 lines
444 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Src\Protos\signal.proto" GrpcServices="Server" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.27.0" />
|
|
<PackageReference Include="Grpc.AspNetCore.Server.Reflection" Version="2.35.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|