SignalR Console app example
First of all, you should install SignalR.Host.Self on the server application and SignalR.Client on your client application by nuget : PM> Install-Package SignalR.Hosting.Self -Version 0.5.2 PM> Install-Package Microsoft.AspNet.SignalR.Client Then add the following code to your projects 😉 (run the projects as administrator) Server console app: using System; using SignalR.Hubs; namespace SignalR.Hosting.Self.Samples { class Program { … Read more