Refactor for .NET framework compatibility

Added preprocessor directives to conditionally include
code for different .NET frameworks. Adjusted namespace
declarations and organized the `Static` class for
improved clarity and maintainability.
This commit is contained in:
Developer 02 2025-09-30 21:04:32 +02:00
parent fde0398c89
commit a38447a36f

View File

@ -5,11 +5,11 @@ using System;
using DigitalData.Core.Abstraction.Application.Repository; using DigitalData.Core.Abstraction.Application.Repository;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
namespace DigitalData.Core.Infrastructure namespace DigitalData.Core.Abstraction.Application
#if NET #if NET
; ;
#elif NETFRAMEWORK #elif NETFRAMEWORK
{ {
#endif #endif
public static class Static public static class Static