Igor Lyadov
Igor Lyadov
@eflorespalma @hugovlc You can try to fix `VirtualPathRoot` from `QuartzminOptions` ``` app.UseQuartzmin(new QuartzminOptions() { Scheduler = StdSchedulerFactory.GetDefaultScheduler().Result, VirtualPathRoot = "/quartz", }); ```
@xico002 You can try to fix `VirtualPathRoot` from `QuartzminOptions` in .NET Core ``` csharp app.UseQuartzmin(new QuartzminOptions() { Scheduler = StdSchedulerFactory.GetDefaultScheduler().Result, VirtualPathRoot = "/quartz", }); ```
I think you can achieve the desired result using `WaitAndRetryAsync` method ```cs private static void SetPolicies() { var delay = Backoff.DecorrelatedJitterBackoffV2( medianFirstRetryDelay: TimeSpan.FromSeconds(1), retryCount: int.MaxValue); var _policy = Policy .Handle()...
> @devigo are you planning on resolving the build errors so this can be merged? I was about to send a PR for the same thing. I don't think it's...
Perhaps [this PR](https://github.com/structuremap/StructureMap.Microsoft.DependencyInjection/pull/52) will allow us to use this library with .NET Core 3.*. I'm using the solution provided by @khellang for hosted services in console applications (.NET Core 2.1).