fix dependcy versions: iOS building

This commit is contained in:
2024-04-16 17:17:22 -05:00
parent f85dc8effc
commit 54de266a6c
7 changed files with 23 additions and 22 deletions
@@ -1,9 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Serilog;
using TcpSharp.Events;
using TcpSharp;
namespace SharpOSC
{
@@ -35,7 +34,7 @@ namespace SharpOSC
string _address;
TcpSharp.TcpSharpSocketClient tcpClient;
TcpSharpSocketClient tcpClient;
private List<byte> frameStream = new List<byte>();
@@ -50,7 +49,7 @@ namespace SharpOSC
try
{
tcpClient = new TcpSharp.TcpSharpSocketClient(Address, Port);
tcpClient = new TcpSharpSocketClient(Address, Port);
tcpClient.OnConnected += ClientConnected;
tcpClient.OnDataReceived += DataReceived;
tcpClient.OnDisconnected += ClientDisconneted;
+2 -2
View File
@@ -63,13 +63,13 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Acr.UserDialogs" Version="7.2.0.562" />
<PackageReference Include="TcpSharp" Version="1.2.0" />
<PackageReference Include="Zeroconf" Version="3.6.11" />
<PackageReference Include="TcpSharp" Version="1.3.6" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2622" />
<PackageReference Include="Acr.Settings" Version="9.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Xamarin.Essentials" Version="1.8.0" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Zeroconf" Version="3.5.11" />
</ItemGroup>
<ItemGroup>
<None Remove="App.xaml" />