Install Asp.Net SignalR error during installation

I am trying to install SignalR in a professional Visual Studio 2010 project. But I get this error:

 Could not install package 'Microsoft.Owin.Security 2.1.0'. 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. F
or more information, contact the package author.
+4
source share
4 answers

Try installing a different version of the r signal with this command (via the nuget package console) 'install-package Microsoft.AspNet.SignalR -Version 1.1.3'. The latest version of signalr requires .net4.5

+12
source

I meet this problem and solving it, updating my target version of the .Net Framework project to 4.6.1 (latest)

0
source

, , - .

-, , SignalR, . , , OWin 2.1 .

-, Visual Studio, , . SharpDevelop, , # 4.0.

Review each project in your decision; Find online project dependencies and goals. Unfortunately, there is no common template for this, SignalR does not publish dependencies in either the package manager or the GitHub project. https://github.com/SignalR/SignalR/releases

0
source

I had the same error, in VS 2013 with a web project 4.0 card, I ran the install.png package of the Microsoft.AspNet.SignalR -Version 1.1.3 package and installed sussefull

-3
source

All Articles