Running SignalR .Net Client on Linux with Mono - possible?

后端 未结 3 1758
慢半拍i
慢半拍i 2020-12-30 13:18

Does anyone have experience running the SignalR .net client on Mono? I am considering this for a process that I need to run cross platform (which needs to connect to a inter

相关标签:
3条回答
  • 2020-12-30 13:56

    I have created a sample project with signalr client working under mono framework:

    https://github.com/mdymel/mono-signalr-client

    I checked it with one of my websites and it works fine.

    0 讨论(0)
  • 2020-12-30 14:00

    I haven't tried it myself, but since the SignalR Mono solution file contains the Microsoft.AspNet.SignalR.Client40.Samples sample it would really seem like it does.

    0 讨论(0)
  • 2020-12-30 14:00

    It turns out Mono has a tool you can use to scan your assemblies to see if they are compatible with Mono. I did that and here is the results, related to the SignalR .net client:

    enter image description here

    So it looks like mono doesn't support some of the async Task stuff. I'll see if there is a way around this...

    0 讨论(0)
提交回复
热议问题