<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.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>{2DC79E40-BB70-4F6A-B378-905F2FBC6E97}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>SuperWebSocket</RootNamespace>
    <AssemblyName>SuperWebSocket</AssemblyName>
    <FileAlignment>512</FileAlignment>
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    <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>
    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
    <DocumentationFile>bin\Debug\SuperWebSocket.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>
    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
    <DocumentationFile>bin\Release\SuperWebSocket.XML</DocumentationFile>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <PropertyGroup>
    <SignAssembly>true</SignAssembly>
  </PropertyGroup>
  <PropertyGroup>
    <AssemblyOriginatorKeyFile>superwebsocket.snk</AssemblyOriginatorKeyFile>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="DnsClient, Version=1.0.7.0, Culture=neutral, PublicKeyToken=4574bb5573c51424, processorArchitecture=MSIL">
      <HintPath>..\packages\DnsClient.1.0.7\lib\net45\DnsClient.dll</HintPath>
    </Reference>
    <Reference Include="log4net">
      <HintPath>DLL\log4net.dll</HintPath>
    </Reference>
    <Reference Include="MongoDB.Bson, Version=2.7.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\MongoDB.Bson.2.7.0\lib\net45\MongoDB.Bson.dll</HintPath>
    </Reference>
    <Reference Include="MongoDB.Driver, Version=2.7.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\MongoDB.Driver.2.7.0\lib\net45\MongoDB.Driver.dll</HintPath>
    </Reference>
    <Reference Include="MongoDB.Driver.Core, Version=2.7.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\MongoDB.Driver.Core.2.7.0\lib\net45\MongoDB.Driver.Core.dll</HintPath>
    </Reference>
    <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
      <HintPath>..\packages\Newtonsoft.Json.10.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Buffers, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
      <HintPath>..\packages\System.Buffers.4.3.0\lib\netstandard1.1\System.Buffers.dll</HintPath>
    </Reference>
    <Reference Include="System.Core" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.0.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Xml" />
    <Reference Include="System.Configuration" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\GlobalAssemblyInfo.cs">
      <Link>GlobalAssemblyInfo.cs</Link>
    </Compile>
    <Compile Include="Command\Binary.cs" />
    <Compile Include="Command\Close.cs" />
    <Compile Include="Command\Continuation.cs" />
    <Compile Include="Command\FragmentCommand.cs" />
    <Compile Include="Command\HandShake.cs" />
    <Compile Include="Command\Ping.cs" />
    <Compile Include="Command\Plain.cs" />
    <Compile Include="Command\Pong.cs" />
    <Compile Include="Command\Text.cs" />
    <Compile Include="Config\CommandConfig.cs" />
    <Compile Include="Config\CommandConfigCollection.cs" />
    <Compile Include="Config\SubProtocolConfig.cs" />
    <Compile Include="Config\SubProtocolConfigCollection.cs" />
    <Compile Include="Extensions.cs" />
    <Compile Include="IBinaryDataConverter.cs" />
    <Compile Include="JsonWebSocketSession.cs" />
    <Compile Include="Protocol\CloseStatusCodeHybi10.cs" />
    <Compile Include="Protocol\CloseStatusCodeRfc6455.cs" />
    <Compile Include="Protocol\DraftHybi00Processor.cs" />
    <Compile Include="Protocol\DraftHybi10Processor.cs" />
    <Compile Include="Protocol\FramePartReader\DataFramePartReader.cs" />
    <Compile Include="Protocol\FramePartReader\ExtendedLenghtReader.cs" />
    <Compile Include="Protocol\FramePartReader\FixPartReader.cs" />
    <Compile Include="Protocol\FramePartReader\IDataFramePartReader.cs" />
    <Compile Include="Protocol\FramePartReader\MaskKeyReader.cs" />
    <Compile Include="Protocol\FramePartReader\PayloadDataReader.cs" />
    <Compile Include="Protocol\HandshakeRequest.cs" />
    <Compile Include="Protocol\ICloseStatusCode.cs" />
    <Compile Include="Protocol\IWebSocketFragment.cs" />
    <Compile Include="Protocol\MultipleProtocolSwitchProcessor.cs" />
    <Compile Include="Protocol\OpCode.cs" />
    <Compile Include="Protocol\PlainFragment.cs" />
    <Compile Include="Protocol\ProtocolProcessorBase..cs" />
    <Compile Include="Protocol\IProtocolProcessor.cs" />
    <Compile Include="Protocol\Rfc6455Processor.cs" />
    <Compile Include="Protocol\WebSocketDataFrame.cs" />
    <Compile Include="Protocol\WebSocketDataFrameReceiveFilter.cs" />
    <Compile Include="Protocol\WebSocketSecKey3ReceiveFilter.cs" />
    <Compile Include="SubProtocol\AsyncJsonSubCommand.cs" />
    <Compile Include="SubProtocol\BasicSubCommandParser.cs" />
    <Compile Include="SubProtocol\BasicSubProtocol.cs" />
    <Compile Include="SubProtocol\ISubCommand.cs" />
    <Compile Include="SubProtocol\ISubCommandFilterLoader.cs" />
    <Compile Include="SubProtocol\ISubProtocol.cs" />
    <Compile Include="SubProtocol\ISubRequestInfo.cs" />
    <Compile Include="SubProtocol\JsonSubCommand.cs" />
    <Compile Include="SubProtocol\JsonSubCommandBase.cs" />
    <Compile Include="SubProtocol\SubCommandBase.cs" />
    <Compile Include="SubProtocol\SubCommandFilterAttribute.cs" />
    <Compile Include="SubProtocol\SubProtocolBase.cs" />
    <Compile Include="SubProtocol\SubRequestInfo.cs" />
    <Compile Include="TextEncodingBinaryDataConverter.cs" />
    <Compile Include="WebSocketConst.cs" />
    <Compile Include="WebSocketProtocol.cs" />
    <Compile Include="WebSocketServer.cs" />
    <Compile Include="WebSocketSession.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Protocol\WebSocketReceiveFilterBase.cs" />
    <Compile Include="Protocol\WebSocketDataReceiveFilter.cs" />
    <Compile Include="Protocol\WebSocketHeaderReceiveFilter.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="packages.config" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="DLL\" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\SocketBase\SuperSocket.SocketBase.Net40.csproj">
      <Project>{40b77789-ea11-4c05-8f52-86711d7bcaaf}</Project>
      <Name>SuperSocket.SocketBase.Net40</Name>
    </ProjectReference>
    <ProjectReference Include="..\SocketCommon\SuperSocket.Common.Net40.csproj">
      <Project>{a24f4d38-ba9c-4fd6-95b7-4980de36131a}</Project>
      <Name>SuperSocket.Common.Net40</Name>
    </ProjectReference>
    <ProjectReference Include="..\SocketEngine\SuperSocket.SocketEngine.Net40.csproj">
      <Project>{153fef72-191c-43d9-be71-2b351c7ac760}</Project>
      <Name>SuperSocket.SocketEngine.Net40</Name>
    </ProjectReference>
  </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>