First, make sure Get-Package in the package manager console and delete all previous batches of Uninstall-Package [Id] -RemoveDependencies , as this should give you a clean list.
What worked for me without crashes or dependency issues was to use NuGet to install Microsoft.AspNet.SignalR version 1.1.4 into your application and DataAccess. Then add the following to the Global.asax file:
// Add this Library for MapHubs extension using System.Web.Routing; protected void Application_Start() { // This registers the default hubs route: ~signalr // Simply add the line below WITHIN this function RouteTable.Routes.MapHubs(); }
[This was used when using Visual Studios 2015 Enterprise on 10/29/2015]
source share