SuperWebSocket.csproj 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{2DC79E40-BB70-4F6A-B378-905F2FBC6E97}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>SuperWebSocket</RootNamespace>
  12. <AssemblyName>SuperWebSocket</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. <DocumentationFile>bin\Debug\SuperWebSocket.XML</DocumentationFile>
  27. <Prefer32Bit>false</Prefer32Bit>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  37. <DocumentationFile>bin\Release\SuperWebSocket.XML</DocumentationFile>
  38. <Prefer32Bit>false</Prefer32Bit>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <SignAssembly>true</SignAssembly>
  42. </PropertyGroup>
  43. <PropertyGroup>
  44. <AssemblyOriginatorKeyFile>superwebsocket.snk</AssemblyOriginatorKeyFile>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Reference Include="DnsClient, Version=1.0.7.0, Culture=neutral, PublicKeyToken=4574bb5573c51424, processorArchitecture=MSIL">
  48. <HintPath>..\packages\DnsClient.1.0.7\lib\net45\DnsClient.dll</HintPath>
  49. </Reference>
  50. <Reference Include="log4net">
  51. <HintPath>DLL\log4net.dll</HintPath>
  52. </Reference>
  53. <Reference Include="MongoDB.Bson, Version=2.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  54. <HintPath>..\packages\MongoDB.Bson.2.7.0\lib\net45\MongoDB.Bson.dll</HintPath>
  55. </Reference>
  56. <Reference Include="MongoDB.Driver, Version=2.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  57. <HintPath>..\packages\MongoDB.Driver.2.7.0\lib\net45\MongoDB.Driver.dll</HintPath>
  58. </Reference>
  59. <Reference Include="MongoDB.Driver.Core, Version=2.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  60. <HintPath>..\packages\MongoDB.Driver.Core.2.7.0\lib\net45\MongoDB.Driver.Core.dll</HintPath>
  61. </Reference>
  62. <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  63. <HintPath>..\packages\Newtonsoft.Json.10.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
  64. <Private>True</Private>
  65. </Reference>
  66. <Reference Include="System" />
  67. <Reference Include="System.Buffers, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  68. <HintPath>..\packages\System.Buffers.4.3.0\lib\netstandard1.1\System.Buffers.dll</HintPath>
  69. </Reference>
  70. <Reference Include="System.Core" />
  71. <Reference Include="Microsoft.CSharp" />
  72. <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  73. <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.0.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
  74. <Private>True</Private>
  75. </Reference>
  76. <Reference Include="System.Xml" />
  77. <Reference Include="System.Configuration" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Compile Include="..\GlobalAssemblyInfo.cs">
  81. <Link>GlobalAssemblyInfo.cs</Link>
  82. </Compile>
  83. <Compile Include="Command\Binary.cs" />
  84. <Compile Include="Command\Close.cs" />
  85. <Compile Include="Command\Continuation.cs" />
  86. <Compile Include="Command\FragmentCommand.cs" />
  87. <Compile Include="Command\HandShake.cs" />
  88. <Compile Include="Command\Ping.cs" />
  89. <Compile Include="Command\Plain.cs" />
  90. <Compile Include="Command\Pong.cs" />
  91. <Compile Include="Command\Text.cs" />
  92. <Compile Include="Config\CommandConfig.cs" />
  93. <Compile Include="Config\CommandConfigCollection.cs" />
  94. <Compile Include="Config\SubProtocolConfig.cs" />
  95. <Compile Include="Config\SubProtocolConfigCollection.cs" />
  96. <Compile Include="Extensions.cs" />
  97. <Compile Include="IBinaryDataConverter.cs" />
  98. <Compile Include="JsonWebSocketSession.cs" />
  99. <Compile Include="Protocol\CloseStatusCodeHybi10.cs" />
  100. <Compile Include="Protocol\CloseStatusCodeRfc6455.cs" />
  101. <Compile Include="Protocol\DraftHybi00Processor.cs" />
  102. <Compile Include="Protocol\DraftHybi10Processor.cs" />
  103. <Compile Include="Protocol\FramePartReader\DataFramePartReader.cs" />
  104. <Compile Include="Protocol\FramePartReader\ExtendedLenghtReader.cs" />
  105. <Compile Include="Protocol\FramePartReader\FixPartReader.cs" />
  106. <Compile Include="Protocol\FramePartReader\IDataFramePartReader.cs" />
  107. <Compile Include="Protocol\FramePartReader\MaskKeyReader.cs" />
  108. <Compile Include="Protocol\FramePartReader\PayloadDataReader.cs" />
  109. <Compile Include="Protocol\HandshakeRequest.cs" />
  110. <Compile Include="Protocol\ICloseStatusCode.cs" />
  111. <Compile Include="Protocol\IWebSocketFragment.cs" />
  112. <Compile Include="Protocol\MultipleProtocolSwitchProcessor.cs" />
  113. <Compile Include="Protocol\OpCode.cs" />
  114. <Compile Include="Protocol\PlainFragment.cs" />
  115. <Compile Include="Protocol\ProtocolProcessorBase..cs" />
  116. <Compile Include="Protocol\IProtocolProcessor.cs" />
  117. <Compile Include="Protocol\Rfc6455Processor.cs" />
  118. <Compile Include="Protocol\WebSocketDataFrame.cs" />
  119. <Compile Include="Protocol\WebSocketDataFrameReceiveFilter.cs" />
  120. <Compile Include="Protocol\WebSocketSecKey3ReceiveFilter.cs" />
  121. <Compile Include="SubProtocol\AsyncJsonSubCommand.cs" />
  122. <Compile Include="SubProtocol\BasicSubCommandParser.cs" />
  123. <Compile Include="SubProtocol\BasicSubProtocol.cs" />
  124. <Compile Include="SubProtocol\ISubCommand.cs" />
  125. <Compile Include="SubProtocol\ISubCommandFilterLoader.cs" />
  126. <Compile Include="SubProtocol\ISubProtocol.cs" />
  127. <Compile Include="SubProtocol\ISubRequestInfo.cs" />
  128. <Compile Include="SubProtocol\JsonSubCommand.cs" />
  129. <Compile Include="SubProtocol\JsonSubCommandBase.cs" />
  130. <Compile Include="SubProtocol\SubCommandBase.cs" />
  131. <Compile Include="SubProtocol\SubCommandFilterAttribute.cs" />
  132. <Compile Include="SubProtocol\SubProtocolBase.cs" />
  133. <Compile Include="SubProtocol\SubRequestInfo.cs" />
  134. <Compile Include="TextEncodingBinaryDataConverter.cs" />
  135. <Compile Include="WebSocketConst.cs" />
  136. <Compile Include="WebSocketProtocol.cs" />
  137. <Compile Include="WebSocketServer.cs" />
  138. <Compile Include="WebSocketSession.cs" />
  139. <Compile Include="Properties\AssemblyInfo.cs" />
  140. <Compile Include="Protocol\WebSocketReceiveFilterBase.cs" />
  141. <Compile Include="Protocol\WebSocketDataReceiveFilter.cs" />
  142. <Compile Include="Protocol\WebSocketHeaderReceiveFilter.cs" />
  143. </ItemGroup>
  144. <ItemGroup>
  145. <None Include="packages.config" />
  146. </ItemGroup>
  147. <ItemGroup>
  148. <Folder Include="DLL\" />
  149. </ItemGroup>
  150. <ItemGroup>
  151. <ProjectReference Include="..\SocketBase\SuperSocket.SocketBase.Net40.csproj">
  152. <Project>{40b77789-ea11-4c05-8f52-86711d7bcaaf}</Project>
  153. <Name>SuperSocket.SocketBase.Net40</Name>
  154. </ProjectReference>
  155. <ProjectReference Include="..\SocketCommon\SuperSocket.Common.Net40.csproj">
  156. <Project>{a24f4d38-ba9c-4fd6-95b7-4980de36131a}</Project>
  157. <Name>SuperSocket.Common.Net40</Name>
  158. </ProjectReference>
  159. <ProjectReference Include="..\SocketEngine\SuperSocket.SocketEngine.Net40.csproj">
  160. <Project>{153fef72-191c-43d9-be71-2b351c7ac760}</Project>
  161. <Name>SuperSocket.SocketEngine.Net40</Name>
  162. </ProjectReference>
  163. </ItemGroup>
  164. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  165. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  166. Other similar extension points exist, see Microsoft.Common.targets.
  167. <Target Name="BeforeBuild">
  168. </Target>
  169. <Target Name="AfterBuild">
  170. </Target>
  171. -->
  172. </Project>