Hi,
I have upgraded my webjob from 2.x to 3.x after that as expected JobHostConfiguration stoped working.
I was using hangfire with JobHostConfiguration for reading azure queue in my worker role project. Now hangfire stopped working. The code which i used for recurring tasks is not triggering. But the new code which i added for my service bus queue is working.
I am using .net 4.7
sample code
using (var server = new BackgroundJobServer(options))
{
RecurringJob.AddOrUpdate(() => Console.WriteLine(āTransparent!*ā), Cron.Minutely);
}
Can someone point if i am missing some config?