Félix Pelletier

Results 4 issues of Félix Pelletier

**Describe the bug** I'm trying to setup dependency injection for a new **scheduled job with parameters** and followed the following [documentation section](https://docs.coravel.net/Scheduler/#scheduling-with-additional-parameters), without much success. In my `Program.cs` class, I...

**Describe the solution you'd like** I tried to setup Coravel to execute a job **on a weekly basis, on Saturdays**: ```csharp scheduler .Schedule() .Weekly() .Saturday(); ``` However, the task executed...

Based on an existing .NET Core web app: ## Repro Steps 1. Implement a minimal class that implements `ITelemetryProcessor` (e.g. `CustomTelemetryProcessor`); 2. Inject `ILogger` in the constructor; 3. Register your...

Hi, I've been trying to combine [`dotenv`](https://github.com/motdotla/dotenv) with `nconf` to securely store sensitive settings for local development. In short, a `.env` file, ignored from source control, would contain application settings...