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>
|
2010-10-27 19:50:50 +08:00
|
|
|
<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>
|
|
|
|
</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" />
|
|
|
|
<Compile Include="Stream\IWsStream.cs" />
|
|
|
|
<Compile Include="Stream\WsStream.cs" />
|
|
|
|
<Compile Include="Frame\WsFrame.cs" />
|
|
|
|
<Compile Include="Frame\CloseStatusCode.cs" />
|
|
|
|
<Compile Include="Frame\Fin.cs" />
|
|
|
|
<Compile Include="Frame\Mask.cs" />
|
|
|
|
<Compile Include="Frame\Opcode.cs" />
|
|
|
|
<Compile Include="Frame\PayloadData.cs" />
|
|
|
|
<Compile Include="Frame\Rsv.cs" />
|
2012-08-04 14:51:31 +08:00
|
|
|
<Compile Include="ConnectionEventArgs.cs" />
|
|
|
|
<Compile Include="ErrorEventArgs.cs" />
|
|
|
|
<Compile Include="WebSocketServer.cs" />
|
|
|
|
<Compile Include="WebSocket.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>
|
|
|
|
<Folder Include="Stream\" />
|
|
|
|
<Folder Include="Frame\" />
|
|
|
|
</ItemGroup>
|
2010-10-18 21:28:56 +08:00
|
|
|
</Project>
|