Tired of setting up schedulers? This is probably the easiest alternative, made with Asp.NET in mind.
using EasySchedule;
namespace YourNamespace;
public class ClassYouHaveMethodsIn
{
[Schedule("0 * * * * *")] // Runs every minute at 0s
public void MethodToSchedule(){
Console.WriteLine($"{DateTime.Now:HH:mm:ss.ffff}: It did the thing");
}
}- RunOnce property for the attribute
- Optional retry configuration