2025-12-19 17:54:50 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2026-03-17 20:14:29 +01:00
|
|
|
|
<LangVersion>14</LangVersion>
|
2025-12-19 17:54:50 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="LiteNetLib" Version="1.3.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-02-14 14:35:29 +01:00
|
|
|
|
<ProjectReference Include="..\GlobalClassLib\GlobalClassLib.csproj" />
|
2025-12-19 17:54:50 +01:00
|
|
|
|
<ProjectReference Include="..\PacketLib\PacketLib.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|