-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSharpCoreDB.Server.csproj
More file actions
61 lines (51 loc) · 2.54 KB
/
SharpCoreDB.Server.csproj
File metadata and controls
61 lines (51 loc) · 2.54 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
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<ServerGarbageCollection>true</ServerGarbageCollection>
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
<!-- Server optimizations (C# 14 / .NET 10) -->
<TieredPGO>true</TieredPGO>
<TieredCompilation>true</TieredCompilation>
<PublishTrimmed>false</PublishTrimmed>
<!-- Assembly info -->
<AssemblyName>sharpcoredb-server</AssemblyName>
<Product>SharpCoreDB Network Server</Product>
<Description>SharpCoreDB network database server with gRPC and HTTP support</Description>
<Version>1.6.0</Version>
<Authors>MPCoreDeveloper</Authors>
<Company>SharpCoreDB</Company>
<Copyright>Copyright (c) 2026 MPCoreDeveloper</Copyright>
</PropertyGroup>
<ItemGroup>
<!-- gRPC Server (latest stable for .NET 10) -->
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
<PackageReference Include="Grpc.AspNetCore.Server.Reflection" Version="2.76.0" />
<!-- Logging with Serilog (trusted by user, latest stable) -->
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<!-- Authentication/JWT (latest stable for .NET 10) -->
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="10.0.5" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.17.0" />
</ItemGroup>
<ItemGroup>
<!-- Project references -->
<ProjectReference Include="..\SharpCoreDB\SharpCoreDB.csproj" />
<ProjectReference Include="..\SharpCoreDB.Server.Core\SharpCoreDB.Server.Core.csproj" />
<ProjectReference Include="..\SharpCoreDB.Server.Protocol\SharpCoreDB.Server.Protocol.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" />
</ItemGroup>
<ItemGroup>
<None Include="..\SharpCoreDBServerScriptClients\**\*.*" Link="ScriptClients\%(RecursiveDir)%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>