Configuration
GlobalConfiguration.Configuration
.UseSqlServerStorage(GetConnectionStringBuilder().ConnectionString)
.UseMsmqQueues(@“FormatName:Direct=OS:localhost\hangfire-{0}”);
Starting Server
server = new BackgroundJobServer();
Queuing Job
var manager = new RecurringJobManager();
manager.AddOrUpdate(“Rec-Show-Message”,Job.FromExpression(() => ShowMessage()), Cron.Minutely());
Unable to see any queue created in MSMQ or Job getting executed. I have already configured DTC by following the link: [http://nthrbldyblg.blogspot.com/2017/02/msmq-between-two-computers.html]