-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathGateServer.csproj
More file actions
44 lines (35 loc) · 1.28 KB
/
GateServer.csproj
File metadata and controls
44 lines (35 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\00_server_bins</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\00_server_bins</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="ConnectSession.cs" />
<Compile Remove="ConnectSessionManager.cs" />
<Compile Remove="PacketDistribute.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="MessagePack" Version="3.1.3" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CommonLib\CommonLib.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="SuperSocketLite">
<HintPath>..\..\00_superSocketLite_libs\net9.0\SuperSocketLite.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>