I am developping a Xamarin.Forms TV app that should be compatible with Windows(UWP), Android and TizenTV. I am using .Net Core SignalR Client (Nuget: Microsoft.AspNetCore.SignalR.Client). The App works fine on Windows & Android but I can't get it to Work on Tizen (main Code is the same). Especially one line of code from signalR is not Working.
hubConnection = new HubConnectionBuilder().WithUrl(apiUrl+ "registration-hub").Build();
If it is excecuted in an Emulator with the Visual Studio Debugger, the debugger just leaves the thread and doesn't continue after this line.
It doesn't log errors or anything else. If try to change the Exception Settings in Visual Studio i get this notification:
"This debug engine does not support exception conditions. The condition(s) will be ignored."
I tried updating & downgrading packages but nothing worked. I can reproduce this in new empty .Net Tizen Projects.
Thanks for your Help