Reputation: 14917
I'm using a new build of 3.0, which is not RTM (December 2015), with the RC1 bits of the rest of ASP.NET 5. I have the .AddSignalR() method in my start up, but I'm not getting the /signalr/js proxy. It comes up as 404. Any suggestions?
Upvotes: 1
Views: 71
Reputation: 9806
You need app.UseSignalR()
also in your Startup.Configure()
.
Upvotes: 1