2.1.1.Install signalR on VS2013

1.Open a new website In V2013ew website

  • File -> New -> Web Site -> ASP .NET Empty Web Site

2.Install Microsoft ASP .NET SignalR

  • Right click on project -> Manage NuGet Packages

  • Type SignalR in the search bar and install Microsoft ASP .NET SignalR

3.Add OWIN start class

  • Right click on project -> Add -> Add New Item

  • Type owin in the search bar and find OWIN Startup class, add it and edit:

      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