SuperWebSocket.NET35.csproj 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  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. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <SignAssembly>true</SignAssembly>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <AssemblyOriginatorKeyFile>..\superwebsocket.snk</AssemblyOriginatorKeyFile>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a">
  42. <SpecificVersion>False</SpecificVersion>
  43. <HintPath>..\Reference\SuperSocket\Net35\$(Configuration)\log4net.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Newtonsoft.Json, Version=4.0.5.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  46. <SpecificVersion>False</SpecificVersion>
  47. <HintPath>..\Reference\Json.NET\Net35\Newtonsoft.Json.dll</HintPath>
  48. </Reference>
  49. <Reference Include="SuperSocket.Common, Version=1.5.0.0, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
  50. <SpecificVersion>False</SpecificVersion>
  51. <HintPath>..\Reference\SuperSocket\Net35\$(Configuration)\SuperSocket.Common.dll</HintPath>
  52. </Reference>
  53. <Reference Include="SuperSocket.SocketBase, Version=1.5.0.0, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
  54. <SpecificVersion>False</SpecificVersion>
  55. <HintPath>..\Reference\SuperSocket\Net35\$(Configuration)\SuperSocket.SocketBase.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System" />
  58. <Reference Include="System.configuration" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="System.Threading">
  61. <HintPath>..\Reference\SuperSocket\Net35\$(Configuration)\System.Threading.dll</HintPath>
  62. </Reference>
  63. <Reference Include="System.Xml" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="..\GlobalAssemblyInfo.cs">
  67. <Link>GlobalAssemblyInfo.cs</Link>
  68. </Compile>
  69. <Compile Include="Command\Binary.cs" />
  70. <Compile Include="Command\Close.cs" />
  71. <Compile Include="Command\Continuation.cs" />
  72. <Compile Include="Command\FragmentCommand.cs" />
  73. <Compile Include="Command\HandShake.cs" />
  74. <Compile Include="Command\Ping.cs" />
  75. <Compile Include="Command\Plain.cs" />
  76. <Compile Include="Command\Pong.cs" />
  77. <Compile Include="Command\Text.cs" />
  78. <Compile Include="Config\CommandConfig.cs" />
  79. <Compile Include="Config\CommandConfigCollection.cs" />
  80. <Compile Include="Config\SubProtocolConfig.cs" />
  81. <Compile Include="Config\SubProtocolConfigCollection.cs" />
  82. <Compile Include="Extensions.cs" />
  83. <Compile Include="IBinaryDataConverter.cs" />
  84. <Compile Include="JsonWebSocketSession.cs" />
  85. <Compile Include="Protocol\CloseStatusCodeHybi10.cs" />
  86. <Compile Include="Protocol\CloseStatusCodeRfc6455.cs" />
  87. <Compile Include="Protocol\DraftHybi00Processor.cs" />
  88. <Compile Include="Protocol\DraftHybi10Processor.cs" />
  89. <Compile Include="Protocol\FramePartReader\DataFramePartReader.cs" />
  90. <Compile Include="Protocol\FramePartReader\ExtendedLenghtReader.cs" />
  91. <Compile Include="Protocol\FramePartReader\FixPartReader.cs" />
  92. <Compile Include="Protocol\FramePartReader\IDataFramePartReader.cs" />
  93. <Compile Include="Protocol\FramePartReader\MaskKeyReader.cs" />
  94. <Compile Include="Protocol\FramePartReader\PayloadDataReader.cs" />
  95. <Compile Include="Protocol\HandshakeRequest.cs" />
  96. <Compile Include="Protocol\ICloseStatusCode.cs" />
  97. <Compile Include="Protocol\IProtocolProcessor.cs" />
  98. <Compile Include="Protocol\IWebSocketFragment.cs" />
  99. <Compile Include="Protocol\MultipleProtocolSwitchProcessor.cs" />
  100. <Compile Include="Protocol\OpCode.cs" />
  101. <Compile Include="Protocol\PlainFragment.cs" />
  102. <Compile Include="Protocol\ProtocolProcessorBase..cs" />
  103. <Compile Include="Protocol\Rfc6455Processor.cs" />
  104. <Compile Include="Protocol\WebSocketDataFrame.cs" />
  105. <Compile Include="Protocol\WebSocketDataFrameReceiveFilter.cs" />
  106. <Compile Include="Protocol\WebSocketDataReceiveFilter.cs" />
  107. <Compile Include="Protocol\WebSocketHeaderReceiveFilter.cs" />
  108. <Compile Include="Protocol\WebSocketReceiveFilterBase.cs" />
  109. <Compile Include="Protocol\WebSocketSecKey3ReceiveFilter.cs" />
  110. <Compile Include="SubProtocol\AsyncJsonSubCommand.cs" />
  111. <Compile Include="SubProtocol\BasicSubCommandParser.cs" />
  112. <Compile Include="SubProtocol\BasicSubProtocol.cs" />
  113. <Compile Include="SubProtocol\ISubCommand.cs" />
  114. <Compile Include="SubProtocol\ISubCommandFilterLoader.cs" />
  115. <Compile Include="SubProtocol\ISubProtocol.cs" />
  116. <Compile Include="SubProtocol\ISubRequestInfo.cs" />
  117. <Compile Include="SubProtocol\JsonSubCommand.cs" />
  118. <Compile Include="SubProtocol\JsonSubCommandBase.cs" />
  119. <Compile Include="SubProtocol\SubCommandBase.cs" />
  120. <Compile Include="SubProtocol\SubCommandFilterAttribute.cs" />
  121. <Compile Include="SubProtocol\SubProtocolBase.cs" />
  122. <Compile Include="SubProtocol\SubRequestInfo.cs" />
  123. <Compile Include="TextEncodingBinaryDataConverter.cs" />
  124. <Compile Include="WebSocketConst.cs" />
  125. <Compile Include="WebSocketProtocol.cs" />
  126. <Compile Include="WebSocketServer.cs" />
  127. <Compile Include="WebSocketSession.cs" />
  128. <Compile Include="Properties\AssemblyInfo.cs" />
  129. </ItemGroup>
  130. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  131. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  132. Other similar extension points exist, see Microsoft.Common.targets.
  133. <Target Name="BeforeBuild">
  134. </Target>
  135. <Target Name="AfterBuild">
  136. </Target>
  137. -->
  138. </Project>