From f06b34cb34d9e1a20bec8f45185b091a1397b0a0 Mon Sep 17 00:00:00 2001 From: "David G. Moore, Jr" Date: Sat, 4 Nov 2023 04:21:51 -0400 Subject: [PATCH] UPDATED: System.HashCode.cs a using. -NET Foundation license pragma warning restore Added an else block attribute. --- src/System/HashCode.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/System/HashCode.cs b/src/System/HashCode.cs index 94b31b3..7e0157f 100644 --- a/src/System/HashCode.cs +++ b/src/System/HashCode.cs @@ -1,4 +1,5 @@ #if !NETSTANDARD2_1_OR_GREATER +using System; // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. @@ -460,4 +461,6 @@ public override bool Equals(object? obj) => #pragma warning restore 0809 } } +#else +// [assembly: TypeForwardedTo(typeof(System.HashCode))] #endif