-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSharpCoreDB.Client.Protocol.csproj
More file actions
53 lines (45 loc) · 2.49 KB
/
SharpCoreDB.Client.Protocol.csproj
File metadata and controls
53 lines (45 loc) · 2.49 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<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.7.0</Version>
<Description>Client-side protocol implementation for SharpCoreDB (gRPC, binary)</Description>
<!-- NuGet Package Properties -->
<PackageId>SharpCoreDB.Client.Protocol</PackageId>
<Authors>MPCoreDeveloper</Authors>
<Company>SharpCoreDB</Company>
<Product>SharpCoreDB.Client.Protocol</Product>
<PackageTags>database;client;protocol;grpc;protobuf;sharpcoredb;net10</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
<RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
<PackageIcon>SharpCoreDB.jpg</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>v1.7.0: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<!-- gRPC & Protobuf (latest stable) -->
<PackageReference Include="Grpc.Net.Client" Version="2.76.0" />
<PackageReference Include="Google.Protobuf" Version="3.34.1" />
<PackageReference Include="Grpc.Tools" Version="2.80.0" PrivateAssets="All" />
<!-- Include .proto files (shared with server) -->
<Protobuf Include="..\SharpCoreDB.Server.Protocol\Protos\*.proto" GrpcServices="Client" Link="Protos\%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" />
<None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" />
</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>