Shai
Shai

Reputation: 117

Is it possible to install Signalr with vs2010

I am trying to install SignalR in my vs2010 project and I get the following error -

Could not install package 'Microsoft.Owin.Security 2.0.2'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.0', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.

How can I install SignalR on vs2010 ??

Upvotes: 1

Views: 3324

Answers (3)

Juvinal Alvarado
Juvinal Alvarado

Reputation: 21

v1.2.2 is the last version of SignalR for the Visual Studio 2010 with .Net Framework 4.0

PM> Install-Package Microsoft.AspNet.SignalR -Version 1.2.2

Upvotes: 1

Vala
Vala

Reputation: 35

Here is the solution you are looking for, http://rionscode.wordpress.com/2013/04/06/getting-signalr-ready-in-visual-studio-2010/

Upvotes: 1

Anders
Anders

Reputation: 17554

You need to install 1.x

>Install-Package Microsoft.AspNet.SignalR -Version 1.1.3

2.x requires 4.5 of the framework

Upvotes: 3

Related Questions