Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneuecc <ils@neue.cc>2021-12-12 18:26:12 +0300
committerneuecc <ils@neue.cc>2021-12-12 18:26:12 +0300
commit1b228946f43016d153883cc3d5570e371cb100d9 (patch)
treecdb9072e4e7457e976e6aed226480829cfc7331b
parentd374efaf004e314ce41cadee7045020a21ecc540 (diff)
disable HashCode.cs if UNITY_2021_2_OR_NEWER
-rw-r--r--src/MessagePack.UnityClient/Assets/Scripts/MessagePack/HashCode.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/HashCode.cs b/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/HashCode.cs
index b10c8ac6..79a44fcf 100644
--- a/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/HashCode.cs
+++ b/src/MessagePack.UnityClient/Assets/Scripts/MessagePack/HashCode.cs
@@ -42,7 +42,7 @@ https://raw.githubusercontent.com/Cyan4973/xxHash/5c174cfa4e45a42f94082dc0d4539b
*/
-#if !(NETCOREAPP || NET_STANDARD)
+#if !(NETCOREAPP || UNITY_2021_2_OR_NEWER)
using System.Collections.Generic;
using System.ComponentModel;