Skip to content

Commit 3c8922e

Browse files
authored
Merge pull request #144 from Code-Sharp/develop
WampSharp v1.2.5.21-beta
2 parents ada6927 + f41d897 commit 3c8922e

File tree

168 files changed

+3359
-363
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+3359
-363
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,4 +250,5 @@ paket-files/
250250

251251
# JetBrains Rider
252252
.idea/
253-
*.sln.iml
253+
*.sln.iml
254+
*.project.lock.json

NuGet/WampSharp.WebSocket4Net.nuspec

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
</group>
1616
<group targetFramework=".NETStandard1.3">
1717
<dependency id="WampSharp" version="[$version$]" />
18-
<dependency id="WebSocket4Net" version="[0.15.0-beta4, )" />
19-
<!--This line is temporary here, until WebSocket4Net fixes its dependencies-->
20-
<dependency id="SuperSocket.ClientEngine.Core" version="[0.8.0.6, )" />
18+
<dependency id="WebSocket4Net" version="[0.15.0-beta5, )" />
2119
</group>
2220
</dependencies>
2321
<id>WampSharp.WebSocket4Net</id>

NuGet/WampSharp.nuspec

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<dependency id="System.Collections.Immutable" version="[1.2.0, )" />
1111
<dependency id="System.Threading.Tasks.Dataflow" version="[4.6.0, )" />
1212
<dependency id="Castle.Core" version="[3.3.1, )" />
13+
<dependency id="System.ValueTuple" version="[4.0.0-rc3-24212-01, )" />
1314
</group>
1415
<group targetFramework="net40">
1516
<dependency id="rx-main" version="[2.2.5]" />
@@ -21,6 +22,7 @@
2122
<dependency id="System.Reactive" version="[3.0.0, )" />
2223
<dependency id="System.Collections.Immutable" version="[1.2.0, )" />
2324
<dependency id="System.Threading.Tasks.Dataflow" version="[4.6.0, )" />
25+
<dependency id="System.ValueTuple" version="[4.0.0-rc3-24212-01, )" />
2426
</group>
2527
<group targetFramework=".NETStandard1.3">
2628
<dependency id="Microsoft.CSharp" version="[4.0.1, )" />
@@ -37,6 +39,7 @@
3739
<dependency id="System.Runtime.Serialization.Primitives" version="[4.1.1, )" />
3840
<dependency id="System.Security.Cryptography.Algorithms" version="[4.2.0, )" />
3941
<dependency id="System.Text.RegularExpressions" version="[4.1.0, )" />
42+
<dependency id="System.ValueTuple" version="[4.0.0-rc3-24212-01, )" />
4043
</group>
4144
<group targetFramework="UAP10.0">
4245
<dependency id="Microsoft.CSharp" version="[4.0.1, )" />
@@ -53,6 +56,7 @@
5356
<dependency id="System.Runtime.Serialization.Primitives" version="[4.1.1, )" />
5457
<dependency id="System.Security.Cryptography.Algorithms" version="[4.2.0, )" />
5558
<dependency id="System.Text.RegularExpressions" version="[4.1.0, )" />
59+
<dependency id="System.ValueTuple" version="[4.0.0-rc3-24212-01, )" />
5660
</group>
5761
</dependencies>
5862
<id>WampSharp</id>

src/mono/Default/WampSharp.WebSocket4Net/WampSharp.WebSocket4Net.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,26 @@
4646
<Reference Include="System.Data" />
4747
<Reference Include="System.Xml" />
4848
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
49-
<HintPath>..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
49+
<HintPath>..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
5050
<Private>True</Private>
5151
</Reference>
5252
</ItemGroup>
5353
<ItemGroup>
5454
<Compile Include="..\..\..\net45\Default\WampSharp.WebSocket4Net\Properties\AssemblyInfo.cs">
5555
<Link>Properties\AssemblyInfo.cs</Link>
5656
</Compile>
57+
<Compile Include="..\..\..\net45\Default\WampSharp.WebSocket4Net\WAMP2\V2\Fluent\IWebSocket4NetTransportSyntax.cs">
58+
<Link>WAMP2\V2\Fluent\IWebSocket4NetTransportSyntax.cs</Link>
59+
</Compile>
5760
<Compile Include="..\..\..\net45\Default\WampSharp.WebSocket4Net\WAMP2\V2\Fluent\WebSocket4NetActivator.cs">
5861
<Link>WAMP2\V2\Fluent\WebSocket4NetActivator.cs</Link>
5962
</Compile>
6063
<Compile Include="..\..\..\net45\Default\WampSharp.WebSocket4Net\WAMP2\V2\Fluent\WebSocket4NetChannelFactoryExtensions.cs">
6164
<Link>WAMP2\V2\Fluent\WebSocket4NetChannelFactoryExtensions.cs</Link>
6265
</Compile>
66+
<Compile Include="..\..\..\net45\Default\WampSharp.WebSocket4Net\WAMP2\V2\Fluent\WebSocket4NetTransportSyntax.cs">
67+
<Link>WAMP2\V2\Fluent\WebSocket4NetTransportSyntax.cs</Link>
68+
</Compile>
6369
<Compile Include="..\..\..\net45\Default\WampSharp.WebSocket4Net\WebSocket4Net\WebSocket4NetBinaryConnection.cs">
6470
<Link>WebSocket4Net\WebSocket4NetBinaryConnection.cs</Link>
6571
</Compile>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
4-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
4+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
55
</packages>

src/mono/Samples/WAMP1/WampSharp.CraClientSample/WampSharp.CraClientSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<Reference Include="System.Data" />
6060
<Reference Include="System.Xml" />
6161
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
62-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
62+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
6363
<Private>True</Private>
6464
</Reference>
6565
</ItemGroup>

src/mono/Samples/WAMP1/WampSharp.CraClientSample/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<packages>
33
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
44
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
5-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
5+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
66
</packages>

src/mono/Samples/WAMP1/WampSharp.RpcClientSample/WampSharp.RpcClientSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<Reference Include="System.Data" />
6161
<Reference Include="System.Xml" />
6262
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
63-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
63+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
6464
<Private>True</Private>
6565
</Reference>
6666
</ItemGroup>

src/mono/Samples/WAMP1/WampSharp.RpcClientSample/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<packages>
33
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
44
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
5-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
5+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
66
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Callee/WampSharp.Samples.Callee.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<Reference Include="System.Data" />
7777
<Reference Include="System.Xml" />
7878
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
79-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
79+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
8080
<Private>True</Private>
8181
</Reference>
8282
</ItemGroup>

src/mono/Samples/WAMP2/WampSharp.Samples.Callee/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
77
<package id="Newtonsoft.Msgpack" version="0.1.10" targetFramework="net45" />
88
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
9-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
9+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
1010
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Caller/WampSharp.Samples.Caller.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<Reference Include="System.Data" />
7777
<Reference Include="System.Xml" />
7878
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
79-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
79+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
8080
<Private>True</Private>
8181
</Reference>
8282
</ItemGroup>

src/mono/Samples/WAMP2/WampSharp.Samples.Caller/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
77
<package id="Newtonsoft.Msgpack" version="0.1.10" targetFramework="net45" />
88
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
9-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
9+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
1010
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.EdgeJs/WampSharp.Samples.EdgeJs.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<Reference Include="System.Data" />
8080
<Reference Include="System.Xml" />
8181
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
82-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
82+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
8383
<Private>True</Private>
8484
</Reference>
8585
</ItemGroup>

src/mono/Samples/WAMP2/WampSharp.Samples.EdgeJs/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
88
<package id="Newtonsoft.Msgpack" version="0.1.10" targetFramework="net45" />
99
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
10-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
10+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
1111
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Publisher/WampSharp.Samples.Publisher.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<Reference Include="System.Data" />
7777
<Reference Include="System.Xml" />
7878
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
79-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
79+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
8080
<Private>True</Private>
8181
</Reference>
8282
</ItemGroup>

src/mono/Samples/WAMP2/WampSharp.Samples.Publisher/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
77
<package id="Newtonsoft.Msgpack" version="0.1.10" targetFramework="net45" />
88
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
9-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
9+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
1010
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Subscriber/WampSharp.Samples.Subscriber.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<Reference Include="System.Data" />
7373
<Reference Include="System.Xml" />
7474
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
75-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
75+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
7676
<Private>True</Private>
7777
</Reference>
7878
</ItemGroup>

src/mono/Samples/WAMP2/WampSharp.Samples.Subscriber/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
66
<package id="Newtonsoft.Msgpack" version="0.1.10" targetFramework="net45" />
77
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
8-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
8+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
99
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.WampCra.Client/WampSharp.Samples.WampCra.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<Reference Include="System.Net.Http" />
5555
<Reference Include="System.Xml" />
5656
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
57-
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
57+
<HintPath>..\..\..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
5858
<Private>True</Private>
5959
</Reference>
6060
</ItemGroup>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
4-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
4+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
55
</packages>

src/mono/Tests/WampSharp.Tests.Wampv2/WampSharp.Tests.Wampv2.csproj

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,16 @@
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
2121
<OutputPath>bin\Debug\</OutputPath>
22-
<DefineConstants>TRACE;DEBUG;NET45;MONO</DefineConstants>
22+
<DefineConstants>TRACE;DEBUG;NET45;MONO WAMPCRA</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
25+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
2526
</PropertyGroup>
2627
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2728
<DebugType>pdbonly</DebugType>
2829
<Optimize>true</Optimize>
2930
<OutputPath>bin\Release\</OutputPath>
30-
<DefineConstants>TRACE;NET45;MONO</DefineConstants>
31+
<DefineConstants>TRACE;NET45;MONO WAMPCRA</DefineConstants>
3132
<ErrorReport>prompt</ErrorReport>
3233
<WarningLevel>4</WarningLevel>
3334
</PropertyGroup>
@@ -60,6 +61,10 @@
6061
<Private>True</Private>
6162
</Reference>
6263
<Reference Include="System.Runtime.Serialization" />
64+
<Reference Include="System.ValueTuple, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
65+
<HintPath>..\..\packages\System.ValueTuple.4.0.0-rc3-24212-01\lib\netstandard1.1\System.ValueTuple.dll</HintPath>
66+
<Private>True</Private>
67+
</Reference>
6368
<Reference Include="System.Xml.Linq" />
6469
<Reference Include="System.Data.DataSetExtensions" />
6570
<Reference Include="Microsoft.CSharp" />
@@ -136,6 +141,12 @@
136141
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcProxies\IErrorsService.cs">
137142
<Link>Integration\RpcProxies\IErrorsService.cs</Link>
138143
</Compile>
144+
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcProxies\ILongValueTuplesServiceProxy.cs">
145+
<Link>Integration\RpcProxies\ILongValueTuplesServiceProxy.cs</Link>
146+
</Compile>
147+
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcProxies\INamedTupleComplexResultService.cs">
148+
<Link>Integration\RpcProxies\INamedTupleComplexResultService.cs</Link>
149+
</Compile>
139150
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcProxies\ISlowSquareService.cs">
140151
<Link>Integration\RpcProxies\ISlowSquareService.cs</Link>
141152
</Compile>
@@ -151,12 +162,27 @@
151162
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcServices\ErrorsService.cs">
152163
<Link>Integration\RpcServices\ErrorsService.cs</Link>
153164
</Compile>
165+
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcServices\LongValueTuplesCalleeService.cs">
166+
<Link>Integration\RpcServices\LongValueTuplesCalleeService.cs</Link>
167+
</Compile>
168+
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcServices\LongValueTuplesService.cs">
169+
<Link>Integration\RpcServices\LongValueTuplesService.cs</Link>
170+
</Compile>
171+
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcServices\NamedTupleComplexResultService.cs">
172+
<Link>Integration\RpcServices\NamedTupleComplexResultService.cs</Link>
173+
</Compile>
174+
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcServices\PositionalTupleComplexResultService.cs">
175+
<Link>Integration\RpcServices\PositionalTupleComplexResultService.cs</Link>
176+
</Compile>
154177
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcServices\SlowSquareService.cs">
155178
<Link>Integration\RpcServices\SlowSquareService.cs</Link>
156179
</Compile>
157180
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\RpcServices\TimeService.cs">
158181
<Link>Integration\RpcServices\TimeService.cs</Link>
159182
</Compile>
183+
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\PubSubSubjectTupleTests.cs">
184+
<Link>Integration\PubSubSubjectTupleTests.cs</Link>
185+
</Compile>
160186
<Compile Include="..\..\..\net45\Tests\WampSharp.Tests.Wampv2\Integration\SerializedValue.cs">
161187
<Link>Integration\SerializedValue.cs</Link>
162188
</Compile>

src/mono/Tests/WampSharp.Tests.Wampv2/packages.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
<package id="Moq" version="4.2.1502.0911" targetFramework="net45" />
55
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
66
<package id="NUnit" version="2.6.4" targetFramework="net45" />
7+
<package id="System.ValueTuple" version="4.0.0-rc3-24212-01" targetFramework="net45" />
78
</packages>

src/mono/WampSharp.Default.Client/WampSharp.Default.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<Reference Include="System.Data" />
5252
<Reference Include="System.Xml" />
5353
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
54-
<HintPath>..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
54+
<HintPath>..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
5555
<Private>True</Private>
5656
</Reference>
5757
</ItemGroup>

src/mono/WampSharp.Default.Client/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<packages>
33
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
44
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
5-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
5+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
66
</packages>

src/mono/WampSharp.WAMP1.Default/WampSharp.WAMP1.Default.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<Reference Include="System.Data" />
5555
<Reference Include="System.Xml" />
5656
<Reference Include="WebSocket4Net, Version=0.15.0.0, Culture=neutral, processorArchitecture=MSIL">
57-
<HintPath>..\packages\WebSocket4Net.0.15.0-beta4\lib\net45\WebSocket4Net.dll</HintPath>
57+
<HintPath>..\packages\WebSocket4Net.0.15.0-beta5\lib\net45\WebSocket4Net.dll</HintPath>
5858
<Private>True</Private>
5959
</Reference>
6060
</ItemGroup>

src/mono/WampSharp.WAMP1.Default/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<package id="Fleck" version="0.13.0.57" targetFramework="net45" />
44
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net45" />
55
<package id="SuperSocket.ClientEngine.Core" version="0.8.0.6" targetFramework="net45" />
6-
<package id="WebSocket4Net" version="0.15.0-beta4" targetFramework="net45" />
6+
<package id="WebSocket4Net" version="0.15.0-beta5" targetFramework="net45" />
77
</packages>

0 commit comments

Comments
 (0)