feat(server): adds minimum keepalive and headroom, chore: updates packages to fix vulnerabilities

This commit is contained in:
2026-07-29 13:18:19 +02:00
parent 72051aae0e
commit ca71fafa4f
12 changed files with 181 additions and 22 deletions
@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Ngino.Client\Ngino.Client.csproj" />
<ProjectReference Include="..\..\src\Ngino.Server\Ngino.Server.csproj" />
</ItemGroup>
</Project>