Using Dashboard without Owin

I was looking through the docs but couldn’t find instructions how to enable the dashboard web UI when not using Owin. We have a basic Web API project hosted on IIS. Is there an alternative to the fancy Owin extension methods that will allow us to enable the Dashboard UI?

Okay, I got it to work - as usual, the problem was with reading everything more carefully :smile:
Since, I referenced only Hangfire.Core, my project didn’t reference Microsoft.Owin.Host.SystemWeb. Now that that is done, I simply had to call app.MapHangfireDashboard(). Pretty obvious, but I’m writing it down in case someone was as lazy as I :smile:

2 Likes