schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{C9433CAD-5795-4735-8DA8-76BEC4C82A52}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Sodao.FastSocket.Server</RootNamespace>
    <AssemblyName>FastSocket.Server</AssemblyName>
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>bin\Debug\FastSocket.Server.xml</DocumentationFile>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>bin\Release\FastSocket.Server.xml</DocumentationFile>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
      <HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Configuration" />
    <Reference Include="XImaging.Automation.Library.HxDriverLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>bin\Debug\XImaging.Automation.Library.HxDriverLib.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Config\Server.cs" />
    <Compile Include="Config\ServerCollection.cs" />
    <Compile Include="Config\SocketServerConfig.cs" />
    <Compile Include="HxSocketServerService.cs" />
    <Compile Include="ISocketListener.cs" />
    <Compile Include="ISocketService.cs" />
    <Compile Include="IUdpServer.cs" />
    <Compile Include="AbsUdpService.cs" />
    <Compile Include="IUdpService.cs" />
    <Compile Include="LogHelper.cs" />
    <Compile Include="Messaging\HxMessage.cs" />
    <Compile Include="Messaging\IMessage.cs" />
    <Compile Include="Messaging\CommandLineMessage.cs" />
    <Compile Include="Messaging\ThriftMessage.cs" />
    <Compile Include="Protocol\HxProtocol.cs" />
    <Compile Include="Protocol\IUdpProtocol.cs" />
    <Compile Include="SocketListener.cs" />
    <Compile Include="AbsSocketService.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Protocol\BadProtocolException.cs" />
    <Compile Include="Protocol\CommandLineProtocol.cs" />
    <Compile Include="Protocol\ProtocolNames.cs" />
    <Compile Include="Protocol\IProtocol.cs" />
    <Compile Include="Protocol\ThriftProtocol.cs" />
    <Compile Include="SocketServer.cs" />
    <Compile Include="SocketServerManager.cs" />
    <Compile Include="UdpServer.cs" />
    <Compile Include="UdpSession.cs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\FastSocket.SocketBase\FastSocket.SocketBase.csproj">
      <Project>{19AC13BD-92BD-4851-A38F-5642C1F97656}</Project>
      <Name>FastSocket.SocketBase</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <None Include="app.config" />
    <None Include="packages.config" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>