- Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathgrpc-server.csproj
18 lines (18 loc) · 682 Bytes
/
grpc-server.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<ProjectSdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReferenceInclude="Grpc.Tools"Version="2.62.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReferenceInclude="Google.Protobuf"Version="3.26.1" />
<PackageReferenceInclude="Grpc.AspNetCore.Server"Version="2.62.0" />
</ItemGroup>
<ItemGroup>
<ProtobufInclude="billboard.proto"GrpcServices="Server" />
<WatchInclude="*.proto" />
</ItemGroup>
</Project>