Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SignalR support in .NET 4

Tags:

Does SignalR support .NET 4.0. Or is it support only from .NET 4.5 upwards. Is there any link which provides with minimum requirements for SignalR.

like image 344
Nipuna Avatar asked Mar 25 '13 03:03

Nipuna


2 Answers

This is not the case any more, and the 2.x releases require .NET 4.5. https://github.com/SignalR/SignalR/issues/1723

like image 59
Chris Field Avatar answered Oct 02 '22 23:10

Chris Field


The last .NET 4.0 support for SignalR is version 1.2.2. Version 2 only works with .NET 4.5

Open the NuGet Package Manager Console and type:

Install-Package Microsoft.AspNet.SignalR.Client -Version 1.2.2 Install-Package Microsoft.AspNet.SignalR -Version 1.2.2  

This will install the SignalR (Client and Server) in your selected project (web project) automatically.

like image 24
sanchezis Avatar answered Oct 03 '22 00:10

sanchezis