From 265a2201420ab6bc047326787f2cdb39411f5d8e Mon Sep 17 00:00:00 2001 From: Praburaj Date: Wed, 3 Sep 2014 15:55:46 -0700 Subject: [PATCH] Adding SignalR components to the Ntlm based Startup class. Missed to do this with previous checkin. --- src/MusicStore/StartupNtlmAuthentication.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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();