2024-01-18 16:18:25 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
|
2024-01-18 22:13:40 +00:00
|
|
|
|
<PackageReference Include="NetMQ" Version="4.0.1.13" />
|
2024-01-18 16:18:25 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\RPG.GameCore\RPG.GameCore.csproj" />
|
|
|
|
|
<ProjectReference Include="..\RPG.Network.Proto\RPG.Network.Proto.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|