Adding SignalR components to the Ntlm based Startup class.
Missed to do this with previous checkin.
This commit is contained in:
parent
b054f392f5
commit
265a220142
|
|
@ -104,8 +104,14 @@ namespace MusicStore
|
||||||
|
|
||||||
// Add MVC services to the services container
|
// Add MVC services to the services container
|
||||||
services.AddMvc();
|
services.AddMvc();
|
||||||
|
|
||||||
|
//Add all SignalR related services to IoC.
|
||||||
|
services.AddSignalR();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//Configure SignalR
|
||||||
|
app.UseSignalR();
|
||||||
|
|
||||||
// Add static files to the request pipeline
|
// Add static files to the request pipeline
|
||||||
app.UseStaticFiles();
|
app.UseStaticFiles();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue