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