refactor(Core.Abstractions): update to support net 4.6.2

This commit is contained in:
2025-09-15 10:16:28 +02:00
parent b99ff91841
commit c95f018413
6 changed files with 50 additions and 12 deletions

View File

@@ -1,4 +1,9 @@
namespace DigitalData.Core.Abstractions.Interfaces;
namespace DigitalData.Core.Abstractions.Interfaces
#if NET
;
#elif NETFRAMEWORK
{
#endif
/// <summary>
/// Ensures that extension methods are handled securely
@@ -6,4 +11,8 @@
/// <typeparam name="Entity"></typeparam>
public interface IDto<Entity> where Entity : IEntity
{
}
}
#if NETFRAMEWORK
}
#endif

View File

@@ -1,8 +1,17 @@
namespace DigitalData.Core.Abstractions.Interfaces;
namespace DigitalData.Core.Abstractions.Interfaces
#if NET
;
#elif NETFRAMEWORK
{
#endif
/// <summary>
/// Ensures that extension methods are handled securely
/// </summary>
public interface IEntity
{
}
}
#if NETFRAMEWORK
}
#endif