Like RC1, see the IAppBuilderBridge sample to get SignalR 2.2 to work with RC1. You just take a class KatanaIApplicationBuilderExtensions
from this project, and then add signalR to the class Startup
as follows:
app.UseAppBuilder(
appBuilder =>
{
appBuilder.MapSignalR();
});
I added it after UseMvc
.
Just tested myself on a new MVC project on RC1 and in IIS Express. At least the Tutorial sample works fine. And as Todd Sprang noted in a comment, it should work because it does not depend heavily on higher-level ASP.NET components.
See also this blog post .
source
share