I am trying to use IAppBuilder on my startup.cs in my MVC Core project, so that I can call app.MapSignalR for my signalR implementation. However I cannot seem to use Owin anywhere in my project, even when I include a using statement or declare it like
Microsoft.AspNetCore.Owin.IAppBuilder
I have tried re-installing the package but that hasn't helped. Does anyone know what may be causing this?
services.AddSignalR()
andapp.UseSignalR(...)
. SignalR isn't in the Owin namespace. – DavidG