Does SignalR or websockets works with ASP.NET CORE 1.0?
问题 I need to implement realtime data sharing push based to my asp.net core 1.0 web application. i.e. If any new data is available I want to push it to all the connected clients/logged in users. I was considering SignalR & websockets for it but SignalR works on .net core 2.0 and websockets works on .net core 1.1 version. Here is the configuration in my csproj file <PropertyGroup> <TargetFramework>netcoreapp1.0</TargetFramework> <RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion>