16 lines
381 B
XML
16 lines
381 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>${DefaultNetCoreTargetFramework}</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\greet.proto" GrpcServices="Server" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="${GrpcAspNetCorePackageVersion}" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|