Skip to content

Commit 49e4434

Browse files
committed
0.9.7
Remove dependency on System.Web for Xamarin compatibility
1 parent 0729767 commit 49e4434

33 files changed

Lines changed: 152 additions & 98 deletions

File tree

-46.5 KB
Binary file not shown.

References/Newtonsoft.Json.dll

-383 KB
Binary file not shown.
-42 KB
Binary file not shown.

References/WebSocket4Net.dll

-99.5 KB
Binary file not shown.

References/xunit.dll

-68 KB
Binary file not shown.

Src/SocketIoClientDotNet.Tests.mono/SocketIoClientDotNet.Tests.mono.csproj

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,30 +30,29 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33-
<Reference Include="EngineIoClientDotNet, Version=0.9.7.0, Culture=neutral, processorArchitecture=MSIL">
33+
<Reference Include="EngineIoClientDotNet, Version=0.9.13.0, Culture=neutral, processorArchitecture=MSIL">
3434
<SpecificVersion>False</SpecificVersion>
35-
<HintPath>..\..\References\EngineIoClientDotNet.dll</HintPath>
35+
<HintPath>..\SocketIoClientDotNet.mono\packages\EngineIoClientDotNet.0.9.13\lib\net45\EngineIoClientDotNet.dll</HintPath>
3636
</Reference>
37-
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
37+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3838
<SpecificVersion>False</SpecificVersion>
39-
<HintPath>..\..\References\Newtonsoft.Json.dll</HintPath>
40-
</Reference>
41-
<Reference Include="Quobject.Collections.Immutable">
42-
<HintPath>..\..\References\Quobject.Collections.Immutable.dll</HintPath>
39+
<HintPath>..\SocketIoClientDotNet.mono\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
4340
</Reference>
4441
<Reference Include="System" />
4542
<Reference Include="System.Core" />
43+
<Reference Include="System.Web" />
4644
<Reference Include="System.Xml.Linq" />
4745
<Reference Include="System.Data.DataSetExtensions" />
4846
<Reference Include="Microsoft.CSharp" />
4947
<Reference Include="System.Data" />
5048
<Reference Include="System.Xml" />
51-
<Reference Include="WebSocket4Net, Version=0.7.0.0, Culture=neutral, PublicKeyToken=eb4e154b696bf72a, processorArchitecture=MSIL">
49+
<Reference Include="WebSocket4Net, Version=0.10.0.0, Culture=neutral, PublicKeyToken=eb4e154b696bf72a, processorArchitecture=MSIL">
5250
<SpecificVersion>False</SpecificVersion>
53-
<HintPath>..\..\References\WebSocket4Net.dll</HintPath>
51+
<HintPath>..\SocketIoClientDotNet.mono\packages\WebSocket4Net.0.10\lib\net45\WebSocket4Net.dll</HintPath>
5452
</Reference>
55-
<Reference Include="xunit">
56-
<HintPath>..\..\References\xunit.dll</HintPath>
53+
<Reference Include="xunit, Version=1.9.2.1705, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
54+
<SpecificVersion>False</SpecificVersion>
55+
<HintPath>..\SocketIoClientDotNet.mono\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
5756
</Reference>
5857
</ItemGroup>
5958
<ItemGroup>
@@ -86,6 +85,9 @@
8685
<Name>SocketIoClientDotNet.mono</Name>
8786
</ProjectReference>
8887
</ItemGroup>
88+
<ItemGroup>
89+
<None Include="packages.config" />
90+
</ItemGroup>
8991
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
9092
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9193
Other similar extension points exist, see Microsoft.Common.targets.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="EngineIoClientDotNet" version="0.9.13" targetFramework="net45" />
4+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
5+
<package id="WebSocket4Net" version="0.10" targetFramework="net45" />
6+
<package id="xunit" version="1.9.2" targetFramework="net45" />
7+
</packages>

Src/SocketIoClientDotNet.Tests.net35/SocketIoClientDotNet.Tests.net35.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33-
<Reference Include="EngineIoClientDotNet, Version=0.9.11.0, Culture=neutral, processorArchitecture=MSIL">
34-
<SpecificVersion>False</SpecificVersion>
35-
<HintPath>..\SocketIoClientDotNet.net35\packages\EngineIoClientDotNet.0.9.11\lib\net35\EngineIoClientDotNet.dll</HintPath>
33+
<Reference Include="EngineIoClientDotNet">
34+
<HintPath>..\SocketIoClientDotNet.net35\packages\EngineIoClientDotNet.0.9.13\lib\net35\EngineIoClientDotNet.dll</HintPath>
3635
</Reference>
3736
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3837
<SpecificVersion>False</SpecificVersion>
39-
<HintPath>..\SocketIoClientDotNet.net35\packages\Newtonsoft.Json.6.0.5\lib\net35\Newtonsoft.Json.dll</HintPath>
38+
<HintPath>..\SocketIoClientDotNet.net35\packages\Newtonsoft.Json.6.0.6\lib\net35\Newtonsoft.Json.dll</HintPath>
4039
</Reference>
4140
<Reference Include="System" />
4241
<Reference Include="System.Core" />
43-
<Reference Include="System.Threading.Tasks.NET35">
44-
<HintPath>..\SocketIoClientDotNet.net35\packages\System.Threading.Tasks.3.0.1\lib\net35\System.Threading.Tasks.NET35.dll</HintPath>
42+
<Reference Include="System.Threading.Tasks.NET35, Version=3.0.2.0, Culture=neutral, processorArchitecture=MSIL">
43+
<SpecificVersion>False</SpecificVersion>
44+
<HintPath>..\SocketIoClientDotNet.net35\packages\System.Threading.Tasks.Unofficial.3.1\lib\net35\System.Threading.Tasks.NET35.dll</HintPath>
4545
</Reference>
4646
<Reference Include="System.Xml.Linq" />
4747
<Reference Include="System.Data.DataSetExtensions" />
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="EngineIoClientDotNet" version="0.9.11" targetFramework="net35" />
4-
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net35" />
5-
<package id="System.Threading.Tasks" version="3.0.1" targetFramework="net35" />
3+
<package id="EngineIoClientDotNet" version="0.9.13" targetFramework="net35" />
4+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net35" />
5+
<package id="System.Threading.Tasks" version="3.1.1" targetFramework="net35" />
6+
<package id="System.Threading.Tasks.Unofficial" version="3.1" targetFramework="net35" />
67
<package id="WebSocket4Net" version="0.10" targetFramework="net35" />
78
<package id="xunit" version="1.9.2" targetFramework="net35" />
89
</packages>

Src/SocketIoClientDotNet.Tests.net45/SocketIoClientDotNet.Tests.net45.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33-
<Reference Include="EngineIoClientDotNet">
34-
<HintPath>..\SocketIoClientDotNet.net45\packages\EngineIoClientDotNet.0.9.11\lib\net45\EngineIoClientDotNet.dll</HintPath>
33+
<Reference Include="EngineIoClientDotNet, Version=0.9.13.0, Culture=neutral, processorArchitecture=MSIL">
34+
<SpecificVersion>False</SpecificVersion>
35+
<HintPath>..\SocketIoClientDotNet.net45\packages\EngineIoClientDotNet.0.9.13\lib\net45\EngineIoClientDotNet.dll</HintPath>
3536
</Reference>
3637
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3738
<SpecificVersion>False</SpecificVersion>
38-
<HintPath>..\SocketIoClientDotNet.net45\packages\Newtonsoft.Json.6.0.5\lib\net45\Newtonsoft.Json.dll</HintPath>
39+
<HintPath>..\SocketIoClientDotNet.net45\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
3940
</Reference>
4041
<Reference Include="System" />
4142
<Reference Include="System.Core" />

0 commit comments

Comments
 (0)