From 85bafa1c5f861cd051ba5e1417df26987eb4a298 Mon Sep 17 00:00:00 2001 From: Jerome Haltom Date: Mon, 19 Aug 2024 21:04:32 -0500 Subject: [PATCH] Actually, we don't need to define these at all except on NetFX. --- src/IKVM.Runtime/System/Index.cs | 2 -- src/IKVM.Runtime/System/Range.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/IKVM.Runtime/System/Index.cs b/src/IKVM.Runtime/System/Index.cs index 7e3807ee8..f29a3ab47 100644 --- a/src/IKVM.Runtime/System/Index.cs +++ b/src/IKVM.Runtime/System/Index.cs @@ -3,8 +3,6 @@ // See the LICENSE file in the project root for more information. #if NETSTANDARD2_1 || NET -using System.Runtime.CompilerServices; -[assembly: TypeForwardedTo(typeof(System.Index))] #else using System.Runtime.CompilerServices; diff --git a/src/IKVM.Runtime/System/Range.cs b/src/IKVM.Runtime/System/Range.cs index bcd5707c2..eeda47db4 100644 --- a/src/IKVM.Runtime/System/Range.cs +++ b/src/IKVM.Runtime/System/Range.cs @@ -3,8 +3,6 @@ // See the LICENSE file in the project root for more information. #if NETSTANDARD2_1 || NET -using System.Runtime.CompilerServices; -[assembly: TypeForwardedTo(typeof(System.Range))] #else using System.Runtime.CompilerServices;