2023-10-06 13:29:27 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-10-10 09:56:08 +00:00
|
|
|
<ProjectReference Include="..\AscNet.Common\AscNet.Common.csproj" />
|
2023-10-08 14:12:01 +00:00
|
|
|
<ProjectReference Include="..\AscNet.GameServer\AscNet.GameServer.csproj" />
|
2023-10-06 13:29:27 +00:00
|
|
|
<ProjectReference Include="..\AscNet.SDKServer\AscNet.SDKServer.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="..\Resources\**">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|