Sergey Odinokov

Results 287 comments of Sergey Odinokov

There's an open issue regarding this, please see https://github.com/ravibpatel/ILRepack.Lib.MSBuild.Task/issues/26. The simplest solution would be to create and reference the `ILRepack.targets` in the project directory with the following contents: ```xml ```

Hangfire uses retries by default in background, however for client methods retries aren't enabled by default. You can register the `IBackgroundJobClient` service with retries enabled in the following way in...

Please tell me what version of Hangfire.Core you have, what storage package (and its version) you are using? Also, please post here the concrete minimal method that doesn't work as...

So the original problem description tells us that the following continuation works fine: ```csharp _bjc.ContinueJobWith(jobId, () => Console.WriteLine("Continuation!")) ``` But the following one doesn't (but actually it gives the *System.ArgumentException:...

Hm, all logging levels, starting from `Info` already limit the number of logging messages to avoid logging transient errors. Only `Debug` and `Trace` levels log everything. So when you see...

Can you post here some more error messages that occur too often, possibly with the stack traces of the corresponding exceptions? I need to understand where this problem happens to...

Thanks @staviloglu, this is an interesting way of providing the feature while trying to avoid its potential problems. However I still believe that one day there's much better implementation of...

Could you share more details regarding the new callback API that's missing? E.g. what's the current behavior, what's expected behavior, what compiler error or exception you see with the current...

May I ask you to be more specific regarding the new API, e.g. which type, method and parameters are required in your case? Otherwise it's not possible to even test...

Hello, I have released Hangfire.Autofac 2.7.0 yesterday with the new scope configuration action feature. However, we can't add `ActivatorUtilities` usage currently, because should reconsider dependencies first (as it requires `Microsoft.Extensions.DependencyInjection`...