commit | 4c7b9fd38ad614dbf37c37e45569790b44868458 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Sat Dec 04 22:48:37 2021 +0100 |
committer | Jens Geyer <Jens-G@users.noreply.github.com> | Sun Dec 05 13:05:58 2021 +0100 |
tree | 6344c046f268684fbb5293c76581e0bc8b87df5b | |
parent | 4637f6d5f8df752291f5e3c8923824e819a2b60f [diff] [blame] |
THRIFT-5479 Add net 6 support Client: netstd Patch: Jens Geyer
diff --git a/lib/netstd/Thrift/Collections/THashSet.cs b/lib/netstd/Thrift/Collections/THashSet.cs index 25fcf10..1c060e5 100644 --- a/lib/netstd/Thrift/Collections/THashSet.cs +++ b/lib/netstd/Thrift/Collections/THashSet.cs
@@ -32,7 +32,7 @@ public THashSet(int capacity) { - #if NET5_0 + #if NET5_0_OR_GREATER Items = new HashSet<T>(capacity); #elif NETFRAMEWORK || NETSTANDARD Items = new HashSet<T>(/*capacity not supported*/);