Merge pull request #13 from worldreaver/master

Fix Nullable conflict with imported type in mscorlib in unity 2021
This commit is contained in:
Yoshifumi Kawai 2022-09-30 17:59:23 +09:00 committed by GitHub
commit da0f91e4b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
#if NETSTANDARD2_0 || NET_STANDARD_2_0 || NET_4_6 #if (NETSTANDARD2_0 || NET_STANDARD_2_0 || NET_4_6) && !UNITY_2021_1_OR_NEWER
namespace System.Diagnostics.CodeAnalysis namespace System.Diagnostics.CodeAnalysis
{ {