I'm participating in the ASP MVC project.
I want to use SignalR in the project but I don't want to use OWIN lib.
As I understand, SignalR is registered in the application using this piece of code:
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
How can I modify this to remove the dependency to OWIN?
I would like to use approach similar to RouteConfig.RegisterRoutes(RouteTable.Routes);