Hangfire and VB.NET - Gettings things configured in the Application Startup class
Earlier this week I ran across Scott Hanselman's post about background processing in ASP.NET ( http://www.hanselman.com/blog/HowToRunBackgroundTasksInASPNET.aspx ). I've written routines in the past that automatically hits a page every so often to run some tasks, but this background processing idea is something I never even considered, and Hangfire ( http://hangfire.io/ ) looks perfect for my background processing needs (mainly sending emails). To get HangFire going (after installing it via NuGet) I need to get it started up in the Application Startup class. The documentation provides C# code