Good morning!
I’ve currently installed HangFire.Mongo (using Nuget: “Install-Package HangFire.Mongo”), and when I set up mongo configuration by using:
GlobalConfiguration.Configuration.UseMongoStorage("mongodb://localhost", "ApplicationDatabase");
The following error is returned:
Error 1 ‘Hangfire.IGlobalConfiguration’ does not contain a definition for ‘UseMongoStorage’ and no extension method ‘UseMongoStorage’ accepting a first argument of type ‘Hangfire.IGlobalConfiguration’ could be found (are you missing a using directive or an assembly reference?)
I’ve been following the existing directives found here:
https://github.com/sergeyzwezdin/Hangfire.Mongo/blob/master/README.md
Can anyone help me?