Skip to content

Commit afc5c49

Browse files
committed
0.9.16 - added support for .net40
1 parent e22d089 commit afc5c49

File tree

18 files changed

+912
-13
lines changed

18 files changed

+912
-13
lines changed

Src/EngineIoClientDotNet.Tests.net35/ClientTests/SocketTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public void SocketOptionCookies()
8080
options.Cookies.Add("foo", "bar");
8181
Assert.Equal("foo=bar", options.GetCookiesAsString());
8282
options.Cookies.Add("name2", "value2");
83-
Assert.Equal("foo=bar, name2=value2", options.GetCookiesAsString());
83+
Assert.Equal("foo=bar; name2=value2", options.GetCookiesAsString());
8484
}
8585
}
8686
}
Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{DF3284AF-2FE7-4855-8111-38835A703564}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>EngineIoClientDotNet.Tests.net40</RootNamespace>
11+
<AssemblyName>EngineIoClientDotNet.Tests.net40</AssemblyName>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
34+
<SpecificVersion>False</SpecificVersion>
35+
<HintPath>..\EngineIoClientDotNet.net40\packages\Newtonsoft.Json.6.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
36+
</Reference>
37+
<Reference Include="System" />
38+
<Reference Include="System.Core" />
39+
<Reference Include="System.Xml.Linq" />
40+
<Reference Include="System.Data.DataSetExtensions" />
41+
<Reference Include="Microsoft.CSharp" />
42+
<Reference Include="System.Data" />
43+
<Reference Include="System.Xml" />
44+
<Reference Include="WebSocket4Net">
45+
<HintPath>..\EngineIoClientDotNet.net40\packages\WebSocket4Net.0.11\lib\net40\WebSocket4Net.dll</HintPath>
46+
</Reference>
47+
<Reference Include="xunit">
48+
<HintPath>..\EngineIoClientDotNet.net40\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
49+
</Reference>
50+
</ItemGroup>
51+
<ItemGroup>
52+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\BinaryPollingTest.cs">
53+
<Link>ClientTests\BinaryPollingTest.cs</Link>
54+
</Compile>
55+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\BinaryWebSocketTest.cs">
56+
<Link>ClientTests\BinaryWebSocketTest.cs</Link>
57+
</Compile>
58+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\Connection.cs">
59+
<Link>ClientTests\Connection.cs</Link>
60+
</Compile>
61+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\ConnectionTest.cs">
62+
<Link>ClientTests\ConnectionTest.cs</Link>
63+
</Compile>
64+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\HandshakeDataTests.cs">
65+
<Link>ClientTests\HandshakeDataTests.cs</Link>
66+
</Compile>
67+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\ServerConnectionTest.cs">
68+
<Link>ClientTests\ServerConnectionTest.cs</Link>
69+
</Compile>
70+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\SocketTest.cs">
71+
<Link>ClientTests\SocketTest.cs</Link>
72+
</Compile>
73+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\SSLServerConnectionTest.cs">
74+
<Link>ClientTests\SSLServerConnectionTest.cs</Link>
75+
</Compile>
76+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\TransportTest.cs">
77+
<Link>ClientTests\TransportTest.cs</Link>
78+
</Compile>
79+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ClientTests\UsageTest.cs">
80+
<Link>ClientTests\UsageTest.cs</Link>
81+
</Compile>
82+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ComponentEmitterTests\EmitterTests.cs">
83+
<Link>ComponentEmitterTests\EmitterTests.cs</Link>
84+
</Compile>
85+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ModulesTests\ParseQSTests.cs">
86+
<Link>ModulesTests\ParseQSTests.cs</Link>
87+
</Compile>
88+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ModulesTests\UTF8Tests.cs">
89+
<Link>ModulesTests\UTF8Tests.cs</Link>
90+
</Compile>
91+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ParserTests\DecodeTests.cs">
92+
<Link>ParserTests\DecodeTests.cs</Link>
93+
</Compile>
94+
<Compile Include="..\EngineIoClientDotNet.Tests.net35\ParserTests\TestsParser.cs">
95+
<Link>ParserTests\TestsParser.cs</Link>
96+
</Compile>
97+
<Compile Include="Properties\AssemblyInfo.cs" />
98+
</ItemGroup>
99+
<ItemGroup>
100+
<None Include="packages.config" />
101+
</ItemGroup>
102+
<ItemGroup>
103+
<ProjectReference Include="..\EngineIoClientDotNet.net40\EngineIoClientDotNet.net40.csproj">
104+
<Project>{833dbca1-0b01-4477-9937-a8e50e426ee5}</Project>
105+
<Name>EngineIoClientDotNet.net40</Name>
106+
</ProjectReference>
107+
</ItemGroup>
108+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
109+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
110+
Other similar extension points exist, see Microsoft.Common.targets.
111+
<Target Name="BeforeBuild">
112+
</Target>
113+
<Target Name="AfterBuild">
114+
</Target>
115+
-->
116+
</Project>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("EngineIoClientDotNet.Tests.net40")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("EngineIoClientDotNet.Tests.net40")]
13+
[assembly: AssemblyCopyright("Copyright © 2015")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("75432de3-510e-4d31-ba47-b25eaa997026")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net40" />
4+
<package id="WebSocket4Net" version="0.11" targetFramework="net40" />
5+
<package id="xunit" version="1.9.2" targetFramework="net40" />
6+
</packages>

0 commit comments

Comments
 (0)