2.1.1.Install signalR on VS2013
1.Open a new website In V2013ew website
2.Install Microsoft ASP .NET SignalR
3.Add OWIN start class
public class Startup { public void Configuration(IAppBuilder app) { app.MapSignalR(); // For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=316888 } }
Last updated