123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?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>false</SignAssembly>
- </PropertyGroup>
- <PropertyGroup>
- <AssemblyOriginatorKeyFile>..\superwebsocket.snk</AssemblyOriginatorKeyFile>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\Reference\SuperSocket\Net45\$(Configuration)\log4net.dll</HintPath>
- </Reference>
- <Reference Include="Newtonsoft.Json, Version=4.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\Reference\Json.NET\Net40\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
- <HintPath>..\packages\NLog.4.6.6\lib\net45\NLog.dll</HintPath>
- </Reference>
- <Reference Include="SuperSocket.Common, Version=1.5.0.0, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\Reference\SuperSocket\Net45\$(Configuration)\SuperSocket.Common.dll</HintPath>
- </Reference>
- <Reference Include="SuperSocket.SocketBase, Version=1.5.0.0, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\Reference\SuperSocket\Net45\$(Configuration)\SuperSocket.SocketBase.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.IO.Compression" />
- <Reference Include="System.Runtime.Serialization" />
- <Reference Include="System.ServiceModel" />
- <Reference Include="System.Transactions" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Configuration" />
- </ItemGroup>
- <ItemGroup>
- <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="GlobalAssemblyInfo.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\WebSocketDataReceiveFilter.cs" />
- <Compile Include="Protocol\WebSocketHeaderReceiveFilter.cs" />
- <Compile Include="Protocol\WebSocketReceiveFilterBase.cs" />
- <Compile Include="Protocol\WebSocketSecKey3ReceiveFilter.cs" />
- <Compile Include="SubProtocol\AsyncJsonSubCommand.cs" />
- <Compile Include="SubProtocol\BasicSubCommandParser.cs" />
- <Compile Include="SubProtocol\BasicSubProtocol.cs" />
- <Compile Include="SubProtocol\ISubCommandFilterLoader.cs" />
- <Compile Include="SubProtocol\ISubCommand.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" />
- </ItemGroup>
- <ItemGroup>
- <None Include="packages.config" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\SocketBase\SuperSocket.SocketBase.Net40.csproj">
- <Project>{40B77789-EA11-4C05-8F52-86711D7BCAAF}</Project>
- <Name>SuperSocket.SocketBase.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>
|