diff --git a/src/MusicStore/StartupNtlmAuthentication.cs b/src/MusicStore/StartupNtlmAuthentication.cs index 54bab90eff..7ceddec489 100644 --- a/src/MusicStore/StartupNtlmAuthentication.cs +++ b/src/MusicStore/StartupNtlmAuthentication.cs @@ -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();