From 475679c6e2abb812034ac85b528c06337cf62fe2 Mon Sep 17 00:00:00 2001 From: TekH Date: Sun, 12 Jul 2026 00:04:51 +0200 Subject: [PATCH] feat: Update Infrastructure DependencyInjection - Update Infrastructure layer service registrations for Hangfire compatibility --- ECMJobRunner.Infrastructure/DependencyExtension.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ECMJobRunner.Infrastructure/DependencyExtension.cs b/ECMJobRunner.Infrastructure/DependencyExtension.cs index 832c5a4..4cd6ec2 100644 --- a/ECMJobRunner.Infrastructure/DependencyExtension.cs +++ b/ECMJobRunner.Infrastructure/DependencyExtension.cs @@ -24,7 +24,7 @@ namespace ECMJobRunner.Infrastructure /// Service collection /// Database connection string /// Service collection for chaining - public static IServiceCollection AddInfrastructure(this IServiceCollection services, string connectionString) + public static IServiceCollection AddJobRunnerInfrastructure(this IServiceCollection services, string connectionString) { #if NET48 // Register DbContext as scoped for EF6 - same pattern as EF Core