From acea738fe532b6e5af2a643dd3d35468ff44e6fa Mon Sep 17 00:00:00 2001 From: Udayshankar Ravikumar Date: Fri, 9 Aug 2024 18:12:10 +0530 Subject: [PATCH] Added missing imports. --- .../CompatWrappers/EzrSharpCompatibilityWrapper.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Runtime/Types/CSharpWrappers/CompatWrappers/EzrSharpCompatibilityWrapper.cs b/src/Runtime/Types/CSharpWrappers/CompatWrappers/EzrSharpCompatibilityWrapper.cs index 2e0ab7c..d305f38 100644 --- a/src/Runtime/Types/CSharpWrappers/CompatWrappers/EzrSharpCompatibilityWrapper.cs +++ b/src/Runtime/Types/CSharpWrappers/CompatWrappers/EzrSharpCompatibilityWrapper.cs @@ -3,6 +3,9 @@ using EzrSquared.Runtime.Types.Core.Numerics; using EzrSquared.Runtime.Types.Core.Text; using System; +using System.Diagnostics.CodeAnalysis; +using System.Reflection; +using System.Threading.Tasks; namespace EzrSquared.Runtime.Types.CSharpWrappers.CompatWrappers;