websocket-sharp/websocket-sharp/websocket-sharp.csproj

134 lines
5.8 KiB
XML
Raw Normal View History

2010-10-18 21:28:56 +08:00
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B357BAC7-529E-4D81-A0D2-71041B19C8DE}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>WebSocketSharp</RootNamespace>
<AssemblyName>websocket-sharp</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>websocket-sharp.snk</AssemblyOriginatorKeyFile>
2010-10-18 21:28:56 +08:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
2010-10-28 15:44:14 +08:00
<DefineConstants>DEBUG</DefineConstants>
2010-10-18 21:28:56 +08:00
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Ubuntu|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug_Ubuntu</OutputPath>
2010-10-28 15:44:14 +08:00
<DefineConstants>DEBUG</DefineConstants>
2010-10-18 21:28:56 +08:00
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Ubuntu|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Release_Ubuntu</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
2013-01-11 19:32:38 +08:00
<GenerateDocumentation>true</GenerateDocumentation>
<CustomCommands>
<CustomCommands>
<Command type="AfterBuild" command="doc/doc.sh" workingdir="doc/" externalConsole="true" />
</CustomCommands>
</CustomCommands>
2010-10-18 21:28:56 +08:00
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
2012-07-31 09:36:52 +08:00
<Reference Include="System.ServiceModel" />
2012-08-04 14:51:31 +08:00
<Reference Include="System.Configuration" />
2010-10-18 21:28:56 +08:00
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Ext.cs" />
<Compile Include="WsState.cs" />
2012-07-31 09:36:52 +08:00
<Compile Include="MessageEventArgs.cs" />
<Compile Include="CloseEventArgs.cs" />
<Compile Include="WsReceivedTooBigMessageException.cs" />
<Compile Include="ByteOrder.cs" />
2012-08-04 14:51:31 +08:00
<Compile Include="ErrorEventArgs.cs" />
<Compile Include="WebSocket.cs" />
2012-08-06 13:34:39 +08:00
<Compile Include="Server\WebSocketServer.cs" />
<Compile Include="Server\WebSocketService.cs" />
<Compile Include="WsStream.cs" />
<Compile Include="RequestHandshake.cs" />
<Compile Include="ResponseHandshake.cs" />
<Compile Include="Handshake.cs" />
2012-09-10 00:36:22 +08:00
<Compile Include="Net\AuthenticationSchemeSelector.cs" />
<Compile Include="Net\AuthenticationSchemes.cs" />
<Compile Include="Net\ChunkStream.cs" />
<Compile Include="Net\ChunkedInputStream.cs" />
<Compile Include="Net\Cookie.cs" />
<Compile Include="Net\CookieCollection.cs" />
<Compile Include="Net\CookieException.cs" />
<Compile Include="Net\EndPointListener.cs" />
<Compile Include="Net\EndPointManager.cs" />
<Compile Include="Net\HttpConnection.cs" />
<Compile Include="Net\HttpListener.cs" />
<Compile Include="Net\HttpListenerContext.cs" />
<Compile Include="Net\HttpListenerException.cs" />
<Compile Include="Net\HttpListenerPrefixCollection.cs" />
<Compile Include="Net\HttpListenerRequest.cs" />
<Compile Include="Net\HttpListenerResponse.cs" />
<Compile Include="Net\HttpStreamAsyncResult.cs" />
<Compile Include="Net\HttpUtility.cs" />
<Compile Include="Net\ListenerAsyncResult.cs" />
<Compile Include="Net\ListenerPrefix.cs" />
<Compile Include="Net\RequestStream.cs" />
<Compile Include="Net\ResponseStream.cs" />
<Compile Include="Net\WebHeaderCollection.cs" />
<Compile Include="Server\HttpServer.cs" />
<Compile Include="Net\HttpVersion.cs" />
<Compile Include="Net\HttpStatusCode.cs" />
<Compile Include="Server\WebSocketServerBase.cs" />
2012-10-04 14:04:21 +08:00
<Compile Include="Net\Security\SslStream.cs" />
2012-10-09 11:14:55 +08:00
<Compile Include="Server\IServiceHost.cs" />
<Compile Include="Server\WebSocketServiceHost.cs" />
2013-01-15 14:29:05 +08:00
<Compile Include="CloseStatusCode.cs" />
<Compile Include="Fin.cs" />
<Compile Include="Mask.cs" />
<Compile Include="Opcode.cs" />
<Compile Include="PayloadData.cs" />
<Compile Include="Rsv.cs" />
<Compile Include="WsFrame.cs" />
2013-01-22 19:46:32 +08:00
<Compile Include="Net\WebSockets\HttpListenerWebSocketContext.cs" />
<Compile Include="Net\WebSockets\TcpListenerWebSocketContext.cs" />
<Compile Include="Net\WebSockets\WebSocketContext.cs" />
<Compile Include="Server\ServiceHostManager.cs" />
<Compile Include="Server\WebSocketServiceManager.cs" />
<Compile Include="Server\HttpRequestEventArgs.cs" />
<Compile Include="Net\HttpHeaderType.cs" />
<Compile Include="Net\HttpHeaderInfo.cs" />
2013-04-23 17:08:42 +08:00
<Compile Include="CompressionMethod.cs" />
2010-10-18 21:28:56 +08:00
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
2012-07-31 09:36:52 +08:00
<ItemGroup>
2012-08-06 13:34:39 +08:00
<Folder Include="Server\" />
2012-09-10 00:36:22 +08:00
<Folder Include="Net\" />
2012-10-04 14:04:21 +08:00
<Folder Include="Net\Security\" />
2013-01-22 19:46:32 +08:00
<Folder Include="Net\WebSockets\" />
2012-07-31 09:36:52 +08:00
</ItemGroup>
2010-10-18 21:28:56 +08:00
</Project>