migrate to new git
This commit is contained in:
17
web/App_Code/SignalR_startup.cs
Normal file
17
web/App_Code/SignalR_startup.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Owin;
|
||||
using Owin;
|
||||
|
||||
[assembly: OwinStartup(typeof(SignalRChat.Startup))]
|
||||
|
||||
namespace SignalRChat
|
||||
{
|
||||
public class Startup
|
||||
{
|
||||
public void Configuration(IAppBuilder app)
|
||||
{
|
||||
app.MapSignalR();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user