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,5 @@
namespace DigitalData.Core.Abstractions;
#if NET
namespace DigitalData.Core.Abstractions;
/// <summary>
/// A deferred implementation of <see cref="IServiceProvider"/> that allows the <see cref="IServiceProvider"/> instance
@@ -38,3 +39,4 @@ public class DeferredServiceProvider : IServiceProvider
return _serviceProvider.Value.GetService(serviceType);
}
}
#endif