|
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.Core</AssemblyName> |
12 | | - <Version>1.6.0</Version> |
13 | | - <Description>Core server infrastructure for SharpCoreDB network server</Description> |
14 | | - |
15 | | - <!-- NuGet Package Properties --> |
16 | | - <PackageId>SharpCoreDB.Server.Core</PackageId> |
17 | | - <Authors>MPCoreDeveloper</Authors> |
18 | | - <Company>SharpCoreDB</Company> |
19 | | - <Product>SharpCoreDB.Server.Core</Product> |
20 | | - <PackageTags>database;server;core;grpc;networking;security;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 | | - <!-- Core dependencies (.NET 10 - latest stable) --> |
34 | | - <PackageReference Include="Grpc.Core.Api" Version="2.76.0" /> |
35 | | - |
36 | | - <!-- ASP.NET Core abstractions (IHttpContextAccessor for gRPC interceptor mTLS) --> |
37 | | - <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
38 | | - |
39 | | - <!-- Security (latest stable for .NET 10 - updated to non-deprecated) --> |
40 | | - <PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.16.0" /> |
41 | | - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.16.0" /> |
42 | | - </ItemGroup> |
43 | | - |
44 | | - <ItemGroup> |
45 | | - <!-- Project references --> |
46 | | - <ProjectReference Include="..\SharpCoreDB\SharpCoreDB.csproj" /> |
47 | | - <ProjectReference Include="..\SharpCoreDB.Server.Protocol\SharpCoreDB.Server.Protocol.csproj" /> |
48 | | - </ItemGroup> |
49 | | - |
50 | | - <ItemGroup> |
51 | | - <None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" /> |
52 | | - <None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" /> |
53 | | - </ItemGroup> |
54 | | - |
55 | | - <ItemGroup> |
56 | | - <PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" /> |
57 | | - </ItemGroup> |
58 | | - |
59 | | -</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.Core</AssemblyName> |
| 12 | + <Version>1.6.0</Version> |
| 13 | + <Description>Core server infrastructure for SharpCoreDB network server</Description> |
| 14 | + |
| 15 | + <!-- NuGet Package Properties --> |
| 16 | + <PackageId>SharpCoreDB.Server.Core</PackageId> |
| 17 | + <Authors>MPCoreDeveloper</Authors> |
| 18 | + <Company>SharpCoreDB</Company> |
| 19 | + <Product>SharpCoreDB.Server.Core</Product> |
| 20 | + <PackageTags>database;server;core;grpc;networking;security;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 | + <!-- Core dependencies (.NET 10 - latest stable) --> |
| 34 | + <PackageReference Include="Grpc.Core.Api" Version="2.76.0" /> |
| 35 | + |
| 36 | + <!-- ASP.NET Core abstractions (IHttpContextAccessor for gRPC interceptor mTLS) --> |
| 37 | + <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
| 38 | + |
| 39 | + <!-- Security (latest stable for .NET 10 - updated to non-deprecated) --> |
| 40 | + <PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.17.0" /> |
| 41 | + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.17.0" /> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | + <ItemGroup> |
| 45 | + <!-- Project references --> |
| 46 | + <ProjectReference Include="..\SharpCoreDB\SharpCoreDB.csproj" /> |
| 47 | + <ProjectReference Include="..\SharpCoreDB.Server.Protocol\SharpCoreDB.Server.Protocol.csproj" /> |
| 48 | + </ItemGroup> |
| 49 | + |
| 50 | + <ItemGroup> |
| 51 | + <None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" /> |
| 52 | + <None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" /> |
| 53 | + </ItemGroup> |
| 54 | + |
| 55 | + <ItemGroup> |
| 56 | + <PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" /> |
| 57 | + </ItemGroup> |
| 58 | + |
| 59 | +</Project> |
0 commit comments