1
vote
1answer
66 views

Why is not SignalR.Redis available on NuGet?

first of all this is my first question and I want to follow rules, but if I made a mistake, I am apologize :) My problem is that I want scale-out my website, which using SignalR and I wanted to ...
2
votes
1answer
99 views

Nuget installs wrong package version

SignalR version 1.0.0 is out, but I want to install the old version 1.0.0-rc1. I used this command but NuGet seems to ignore the version flag and install 1.0.0 anyway. PM> Install-Package ...
1
vote
3answers
148 views

SignalR installation through the nuget

All articles say that SignalR can be installed from Microsoft.AspNet.SignalR nuget package. But this package is not available through nuget interface in VisualStudio but only if you install from ...
2
votes
2answers
736 views

How to install SignalR via NuGet, Failed to add Microsoft.Web.Infrastructure?

I'm attempting to install SignalR using: Install-Package Microsoft.AspNet.SignalR -pre I'm getting an error stating that Nuget cannot add Microsfot.Web.Infrastructure reference. Anyone have any ...
1
vote
1answer
77 views

IWizard with multiproject template to grab nuget prerelease package

I have created a multi-project template and when creating a new project I'm having success installing nuget packages into all my projects when it comes to regular release versions, but I'm trying to ...
3
votes
3answers
1k views

SignalR demo not working

I'm following this quick tutorial on getting a SignalR project started, and in my Hub class, I have the following using Microsoft.AspNet.SignalR.Hubs; namespace MvcApplication8.Hubs { public ...
2
votes
1answer
672 views

SignalR 1.0alpha2 Console Server Application

I'm playing around with the new 1.0alpha2 release of signalR. I want to implement a SignalR server outside an ASP.NET application. So that two console applications can talk to each other. With the ...
0
votes
1answer
474 views

Where is SignalR 0.5.3?

On multiple sources in internet i see that SignalR 0.5.3 is released, i even find the screenshot of NuGet Manager which has v 0.5.3 on it. But in my Nuget manages there is only v 0.5.2 and here also ...
3
votes
4answers
811 views

NuGet Issue installing SignalR and Raven

I am trying to use NuGet to add SignalR and Raven to a new ASP.Net MVC 4 project. If I do SignalR first, then try to add Raven I get the following error: Install failed. Rolling back... ...
1
vote
1answer
871 views

How to install SignalR.Client.NET35 to a project

I am using SignalR 0.5.3, installed via NuGet, for my .NET 4.5 Web Application - now, since I need to push data from SQL SERVER 2008R2 (supporting only the .NET Framework up to 3.5), I need to create ...
10
votes
2answers
840 views

RavenDB and SignalR Nuget Package Dependency Conflict

Basic conflict. SignalR wants Newtonsoft.Json version 4.0.7 or higher while RavenDB wants version equal to 4.0.5. Which obviously means they can't be installed side by side. So aside from ...
2
votes
2answers
817 views

ASP.NET MVC 3 add controller throws error “Object reference not set to an instance of object”

I get below error when I try to add controller to my ASP.NET MVC 3 intranet project Object reference not set to an instance of object I am following an article ...