Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is signalr 3.0 beta available yet for 2015?

Would like to port Signalr code into vnext project but I do not see the references for SignalR 3.x.

like image 896
RickJames Avatar asked Nov 17 '14 21:11

RickJames


People also ask

Is SignalR deprecated?

SignalR is deprecated. May I know the latest package for the same. The package Microsoft. AspNetCore.

Which package used for SignalR?

SignalR. Client NuGet package contains the . NET client libraries for ASP.NET Core SignalR. Use the HubConnectionBuilder to create and build an instance of a connection to a hub.

How do I add a SignalR to my project?

In Solution Explorer, right-click the project and select Add > New Item. In Add New Item - SignalRChat, select Installed > Visual C# > Web > SignalR and then select SignalR Hub Class (v2). Name the class ChatHub and add it to the project. This step creates the ChatHub.


1 Answers

You would need to reference the package in your project.json file, like so:

"dependencies": {
    ...
    "Microsoft.AspNet.SignalR.Server": "3.0.0-*"
 }

A vNext SignalR sample: https://github.com/aspnet/BugTracker

like image 116
Kiran Avatar answered Jan 03 '23 17:01

Kiran