We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9765753 commit 63ee12cCopy full SHA for 63ee12c
Files/Program.cs
@@ -12,7 +12,7 @@
12
bool executeImmediately = configuration.GetValue<bool>("SchedulerSettings:ExecuteImmediately");
13
14
// Get the file processor from the service provider
15
- var fileProcessor = serviceProvider.GetService<IFileProcessor>();
+ var fileProcessor = serviceProvider.GetService<IFileProcessor>()!;
16
17
// Create the task scheduler with the configured executeImmediately setting
18
var scheduler = new TaskScheduler(() => fileProcessor.ProcessFilesAsync(), executeImmediately);
0 commit comments