|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net10.0</TargetFramework> |
5 | | - <LangVersion>14.0</LangVersion> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <ImplicitUsings>enable</ImplicitUsings> |
8 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
9 | | - |
10 | | - <!-- Assembly info --> |
11 | | - <AssemblyName>SharpCoreDB.Server.Protocol</AssemblyName> |
12 | | - <Version>1.6.0</Version> |
13 | | - <Description>Network protocol definitions for SharpCoreDB server (gRPC, binary, HTTP)</Description> |
14 | | - |
15 | | - <!-- NuGet Package Properties --> |
16 | | - <PackageId>SharpCoreDB.Server.Protocol</PackageId> |
17 | | - <Authors>MPCoreDeveloper</Authors> |
18 | | - <Company>SharpCoreDB</Company> |
19 | | - <Product>SharpCoreDB.Server.Protocol</Product> |
20 | | - <PackageTags>database;server;protocol;grpc;protobuf;contracts;sharpcoredb;net10</PackageTags> |
21 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
22 | | - <PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl> |
23 | | - <RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl> |
24 | | - <RepositoryType>git</RepositoryType> |
25 | | - <PackageReadmeFile>NuGet.README.md</PackageReadmeFile> |
26 | | - <PackageIcon>SharpCoreDB.jpg</PackageIcon> |
27 | | - <IncludeSymbols>true</IncludeSymbols> |
28 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
29 | | - <PackageReleaseNotes>v1.6.0: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.</PackageReleaseNotes> |
30 | | - </PropertyGroup> |
31 | | - |
32 | | - <ItemGroup> |
33 | | - <!-- gRPC & Protobuf (latest stable for .NET 10) --> |
34 | | - <PackageReference Include="Grpc.Core.Api" Version="2.76.0" /> |
35 | | - <PackageReference Include="Grpc.Tools" Version="2.78.0" PrivateAssets="All" /> |
36 | | - <PackageReference Include="Google.Protobuf" Version="3.34.1" /> |
37 | | - |
38 | | - <!-- Include .proto files --> |
39 | | - <Protobuf Include="Protos\*.proto" GrpcServices="Both" /> |
40 | | - </ItemGroup> |
41 | | - |
42 | | - <ItemGroup> |
43 | | - <!-- Folder for proto files --> |
44 | | - <None Remove="Protos\**\*.proto" /> |
45 | | - </ItemGroup> |
46 | | - |
47 | | - <ItemGroup> |
48 | | - <None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" /> |
49 | | - <None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" /> |
50 | | - </ItemGroup> |
51 | | - |
52 | | - <ItemGroup> |
53 | | - <PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" /> |
54 | | - </ItemGroup> |
55 | | - |
56 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net10.0</TargetFramework> |
| 5 | + <LangVersion>14.0</LangVersion> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <ImplicitUsings>enable</ImplicitUsings> |
| 8 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 9 | + |
| 10 | + <!-- Assembly info --> |
| 11 | + <AssemblyName>SharpCoreDB.Server.Protocol</AssemblyName> |
| 12 | + <Version>1.6.0</Version> |
| 13 | + <Description>Network protocol definitions for SharpCoreDB server (gRPC, binary, HTTP)</Description> |
| 14 | + |
| 15 | + <!-- NuGet Package Properties --> |
| 16 | + <PackageId>SharpCoreDB.Server.Protocol</PackageId> |
| 17 | + <Authors>MPCoreDeveloper</Authors> |
| 18 | + <Company>SharpCoreDB</Company> |
| 19 | + <Product>SharpCoreDB.Server.Protocol</Product> |
| 20 | + <PackageTags>database;server;protocol;grpc;protobuf;contracts;sharpcoredb;net10</PackageTags> |
| 21 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 22 | + <PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl> |
| 23 | + <RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl> |
| 24 | + <RepositoryType>git</RepositoryType> |
| 25 | + <PackageReadmeFile>NuGet.README.md</PackageReadmeFile> |
| 26 | + <PackageIcon>SharpCoreDB.jpg</PackageIcon> |
| 27 | + <IncludeSymbols>true</IncludeSymbols> |
| 28 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 29 | + <PackageReleaseNotes>v1.6.0: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.</PackageReleaseNotes> |
| 30 | + </PropertyGroup> |
| 31 | + |
| 32 | + <ItemGroup> |
| 33 | + <!-- gRPC & Protobuf (latest stable for .NET 10) --> |
| 34 | + <PackageReference Include="Grpc.Core.Api" Version="2.76.0" /> |
| 35 | + <PackageReference Include="Grpc.Tools" Version="2.80.0" PrivateAssets="All" /> |
| 36 | + <PackageReference Include="Google.Protobuf" Version="3.34.1" /> |
| 37 | + |
| 38 | + <!-- Include .proto files --> |
| 39 | + <Protobuf Include="Protos\*.proto" GrpcServices="Both" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <!-- Folder for proto files --> |
| 44 | + <None Remove="Protos\**\*.proto" /> |
| 45 | + </ItemGroup> |
| 46 | + |
| 47 | + <ItemGroup> |
| 48 | + <None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" /> |
| 49 | + <None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" /> |
| 50 | + </ItemGroup> |
| 51 | + |
| 52 | + <ItemGroup> |
| 53 | + <PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" /> |
| 54 | + </ItemGroup> |
| 55 | + |
| 56 | +</Project> |
0 commit comments