Error gettingAdd HangFire Package from nuget

Hi
i’m getting this error when i’m add package from nuget

Attempting to gather dependency information for package ‘HangFire.1.6.7’ with respect to project ‘MyProjectName’, targeting ‘.NETFramework,Version=v4.5’

That line isn’t an error, it’s information. NuGet does that whenever you add a package as it needs to ensure all the packages needed are installed.

thanks Emyr let me know about this…

Do you know how to execute asp.net mvc method daily after 24 hour whats is function in hang-fire to execute method?

RecurringJob.AddOrUpdate("some-id", () => Console.WriteLine(), Cron.Daily);

But instead of Console.WriteLine(), have some code which uses System.Net.Http.HttpClient

Hi Emyr

These method is use for console application. but i have web application asp.net mvc.

so how can i’m call my controller / Action-Result method