From 8ac4cdf36a58c88375c3e3538f683e3b96cb3589 Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Sat, 26 Oct 2019 11:11:51 +0200 Subject: [PATCH] Rebase and remove polyfill --- .../Utilities/ValueTuplePolyfill.cs | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 src/Discord.Net.Commands/Utilities/ValueTuplePolyfill.cs diff --git a/src/Discord.Net.Commands/Utilities/ValueTuplePolyfill.cs b/src/Discord.Net.Commands/Utilities/ValueTuplePolyfill.cs deleted file mode 100644 index 31c9e96c3..000000000 --- a/src/Discord.Net.Commands/Utilities/ValueTuplePolyfill.cs +++ /dev/null @@ -1,24 +0,0 @@ -#if !NetStandard20 - -namespace System -{ - internal struct ValueTuple - { - public T1 Item1; - public T2 Item2; - } -} - -namespace System.Runtime.CompilerServices -{ - using System.Collections.Generic; - internal class TupleElementNamesAttribute : Attribute - { - public IList TransformNames { get; } - public TupleElementNamesAttribute(string[] transformNames) - { - TransformNames = transformNames; - } - } -} -#endif