Removed CommonCore

This commit is contained in:
Matthias Heil
2026-04-05 08:14:33 +02:00
parent 511a5f9f51
commit 149de07b0e
18 changed files with 134 additions and 123 deletions
@@ -3,12 +3,10 @@ using Microsoft.Extensions.Logging;
namespace RandomLogging.Service;
public class RandomLoggingService : BackgroundService
public class RandomLoggingService(ILogger<RandomLoggingService> logger) : BackgroundService
{
#region Constructors
public RandomLoggingService(ILogger<RandomLoggingService> logger)
=> _logger = logger;
#region Constructors
#endregion
@@ -16,7 +14,7 @@ public class RandomLoggingService : BackgroundService
#region Injected
private readonly ILogger _logger;
private readonly ILogger _logger = logger;
#endregion