17 lines
391 B
XML
Raw Normal View History

2020-02-08 18:36:21 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
2020-04-21 07:20:25 +02:00
<StartupObject>EchoService.Program</StartupObject>
2020-02-08 18:36:21 +01:00
</PropertyGroup>
<ItemGroup>
<Protobuf Include="Protos\Echo.proto" GrpcServices="Server" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.24.0" />
</ItemGroup>
</Project>