-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSharpCoreDB.Client.Protocol.csproj
More file actions
32 lines (26 loc) · 1.33 KB
/
SharpCoreDB.Client.Protocol.csproj
File metadata and controls
32 lines (26 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Assembly info -->
<AssemblyName>SharpCoreDB.Client.Protocol</AssemblyName>
<Version>1.5.0</Version>
<Description>Client-side protocol implementation for SharpCoreDB (gRPC, binary)</Description>
</PropertyGroup>
<ItemGroup>
<!-- gRPC & Protobuf (latest stable) -->
<PackageReference Include="Grpc.Net.Client" Version="2.76.0" />
<PackageReference Include="Google.Protobuf" Version="3.34.0" />
<PackageReference Include="Grpc.Tools" Version="2.78.0" PrivateAssets="All" />
<!-- Include .proto files (shared with server) -->
<Protobuf Include="..\SharpCoreDB.Server.Protocol\Protos\*.proto" GrpcServices="Client" Link="Protos\%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" />
</ItemGroup>
</Project>