Using Hangfire in a self-hosted mono-based solution

I’m working on an application that is going to be self-hosted OWIN environment. The actual deployment will be running on mono under Linux. Is this project tied to IIS or can it be used in any OWIN environment?

@steve_mitcham, Hangfire is based on OWIN, so it does not require IIS/ASP.NET. I haven’t tried Hangfire on Linux/Mono environment yet, however it should work. There is continous integration server that runs unit tests for each build on this platform - https://travis-ci.org/HangfireIO/Hangfire.

1 Like

Thanks for responding. I saw that it was just part of the OWIN middleware. I’m still coming up to speed on these types of issues with ASP.NET applications since I’m a long-time Desktop developer, and was wondering if the self-hosted solutions were susceptible to the same issues.