123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?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>{2DC79E40-BB70-4F6A-B378-905F2FBC6E97}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>SuperWebSocket</RootNamespace>
- <AssemblyName>SuperWebSocket</AssemblyName>
- <TargetFrameworkVersion>v3.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>
- </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>
- </PropertyGroup>
- <PropertyGroup>
- <SignAssembly>true</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\Net35\$(Configuration)\log4net.dll</HintPath>
- </Reference>
- <Reference Include="Newtonsoft.Json, Version=4.0.5.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\Reference\Json.NET\Net35\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="SuperSocket.Common, Version=1.5.0.0, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\Reference\SuperSocket\Net35\$(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\Net35\$(Configuration)\SuperSocket.SocketBase.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.configuration" />
- <Reference Include="System.Core" />
- <Reference Include="System.Threading">
- <HintPath>..\Reference\SuperSocket\Net35\$(Configuration)\System.Threading.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml" />
- </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\IProtocolProcessor.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\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\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" />
- </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>
|