Adding SignalR components to the Ntlm based Startup class.

Missed to do this with previous checkin.
This commit is contained in:
Praburaj 2014-09-03 15:55:46 -07:00
parent b054f392f5
commit 265a220142
1 changed files with 6 additions and 0 deletions

View File

@ -104,8 +104,14 @@ namespace MusicStore
// Add MVC services to the services container
services.AddMvc();
//Add all SignalR related services to IoC.
services.AddSignalR();
});
//Configure SignalR
app.UseSignalR();
// Add static files to the request pipeline
app.UseStaticFiles();