Skip to content

Commit 450672e

Browse files
committed
1.0.8
1 parent ec9feaf commit 450672e

19 files changed

Lines changed: 30 additions & 74 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public static class ConnectionConstants
44
{
55
public static int PORT = 80;
6-
public static string HOSTNAME = "testme.quobject.com";
6+
public static string HOSTNAME = "testme.quobject.io";
77
public static int SSL_PORT = 443;
88
public static readonly int TIMEOUT = 300000;
99
}

Src/EngineIoClientDotNet.Tests.net40/ClientTests/ConnectionConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Quobject.EngineIoClientDotNet_Tests.ClientTests
88
public static class ConnectionConstants
99
{
1010
public static int PORT = 80;
11-
public static string HOSTNAME = "testme.quobject.com";
11+
public static string HOSTNAME = "testme.quobject.io";
1212
public static int SSL_PORT = 443;
1313
public static readonly int TIMEOUT = 300000;
1414
}

Src/EngineIoClientDotNet.Tests.net45/ClientTests/ConnectionConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Quobject.EngineIoClientDotNet_Tests.ClientTests
88
public static class ConnectionConstants
99
{
1010
public static int PORT = 80;
11-
public static string HOSTNAME = "testme.quobject.com";
11+
public static string HOSTNAME = "testme.quobject.io";
1212
public static int SSL_PORT = 443;
1313
public static readonly int TIMEOUT = 300000;
1414
}

Src/EngineIoClientDotNet.Tests.net45/EngineIoClientDotNet.Tests.net45.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
<HintPath>..\EngineIoClientDotNet.net45\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
3939
</Reference>
4040
<Reference Include="System" />
41-
<Reference Include="System.Collections.Immutable, Version=1.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
42-
<HintPath>..\EngineIoClientDotNet.net45\packages\System.Collections.Immutable.1.4.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
41+
<Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
42+
<HintPath>..\EngineIoClientDotNet.net45\packages\System.Collections.Immutable.1.5.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
4343
</Reference>
4444
<Reference Include="System.ComponentModel.Composition" />
4545
<Reference Include="System.Core" />

Src/EngineIoClientDotNet.Tests.net45/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
66
<package id="System.Collections" version="4.3.0" targetFramework="net45" />
77
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net45" />
8-
<package id="System.Collections.Immutable" version="1.4.0" targetFramework="net45" />
8+
<package id="System.Collections.Immutable" version="1.5.0" targetFramework="net45" />
99
<package id="System.Diagnostics.Debug" version="4.3.0" targetFramework="net45" />
1010
<package id="System.Diagnostics.Tools" version="4.3.0" targetFramework="net45" />
1111
<package id="System.Diagnostics.Tracing" version="4.3.0" targetFramework="net45" />

Src/EngineIoClientDotNet.mono/Client/Transports/WebSocket_net35.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ protected override void DoOpen()
3131
var log = LogManager.GetLogger(Global.CallerName());
3232
log.Info("DoOpen uri =" + this.Uri());
3333

34-
ws = new WebSocket4Net.WebSocket(this.Uri(),"",Cookies, sslProtocols: SslProtocols);
34+
ws = new WebSocket4Net.WebSocket(this.Uri(), "", Cookies);
35+
3536
ws.EnableAutoSendPing = false;
3637
if (ServerCertificate.Ignore)
3738
{

Src/EngineIoClientDotNet.net35/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("Quobject Software")]
1111
[assembly: AssemblyProduct("EngineIoClientDotNet")]
12-
[assembly: AssemblyCopyright("Copyright © 2018")]
12+
[assembly: AssemblyCopyright("Copyright © 2019")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.7")]
35-
[assembly: AssemblyFileVersion("1.0.7")]
34+
[assembly: AssemblyVersion("1.0.8")]
35+
[assembly: AssemblyFileVersion("1.0.8")]

Src/EngineIoClientDotNet.net40/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("Quobject Software")]
1111
[assembly: AssemblyProduct("EngineIoClientDotNet")]
12-
[assembly: AssemblyCopyright("Copyright © 2018")]
12+
[assembly: AssemblyCopyright("Copyright © 2019")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.7")]
35-
[assembly: AssemblyFileVersion("1.0.7")]
34+
[assembly: AssemblyVersion("1.0.8")]
35+
[assembly: AssemblyFileVersion("1.0.8")]

Src/EngineIoClientDotNet.net45/EngineIoClientDotNet.net45.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<HintPath>packages\SuperSocket.ClientEngine.Core.0.10.0\lib\net45\SuperSocket.ClientEngine.dll</HintPath>
4040
</Reference>
4141
<Reference Include="System" />
42-
<Reference Include="System.Collections.Immutable, Version=1.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
43-
<HintPath>packages\System.Collections.Immutable.1.4.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
42+
<Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
43+
<HintPath>packages\System.Collections.Immutable.1.5.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
4444
</Reference>
4545
<Reference Include="System.Core" />
4646
<Reference Include="WebSocket4Net, Version=0.15.2.11, Culture=neutral, PublicKeyToken=eb4e154b696bf72a, processorArchitecture=MSIL">

Src/EngineIoClientDotNet.net45/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("Quobject Software")]
1111
[assembly: AssemblyProduct("EngineIoClientDotNet")]
12-
[assembly: AssemblyCopyright("Copyright © 2018")]
12+
[assembly: AssemblyCopyright("Copyright © 2019")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.7")]
35-
[assembly: AssemblyFileVersion("1.0.7")]
34+
[assembly: AssemblyVersion("1.0.8")]
35+
[assembly: AssemblyFileVersion("1.0.8")]

0 commit comments

Comments
 (0)