I get the following error on ws.Send(...), preventing me from building the xamarin app:
Error CS7069 Reference to type 'FileInfo' claims it is defined in 'mscorlib', but it could not be found
However, use the exact same code in a C# console project and it's working fine!!!
I use the following code to send a string to a Tornado webserver that is simply listening on 8888:
` using (var ws = new WebSocket("ws://127.0.0.1:8888/ws")) { ws.OnMessage += (sender, e) => Debug.WriteLine("Server says: " + e.Data );
I get the following error on ws.Send(...), preventing me from building the xamarin app: Error CS7069 Reference to type 'FileInfo' claims it is defined in 'mscorlib', but it could not be found
However, use the exact same code in a C# console project and it's working fine!!!