Files
ChessServer/src/Aiursoft.ChessServer/Aiursoft.ChessServer.csproj
T
xuef c93ef4f495 Update Aiursoft.WebTools package and enforce websocket
The Aiursoft.WebTools package has been upgraded from version 8.0.0 to version 8.0.1. Also, the 'EnforceWebSocket' attribute has been added to the 'GetWebSocket' method in the GamesController to ensure that it only accepts WebSocket requests.
2024-02-21 09:19:16 +00:00

19 lines
828 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>Aiursoft.ChessServer</AssemblyName>
<RootNamespace>Aiursoft.ChessServer</RootNamespace>
<IsTestProject>false</IsTestProject>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aiursoft.AiurObserver.Extensions" Version="8.0.0" />
<PackageReference Include="Aiursoft.AiurObserver.WebSocket.Server" Version="8.0.0" />
<PackageReference Include="Aiursoft.Scanner" Version="8.0.0" />
<PackageReference Include="Aiursoft.WebTools" Version="8.0.1" />
<PackageReference Include="Gera.Chess" Version="1.0.5" />
</ItemGroup>
</Project>