Skip to content

Commit bd5d478

Browse files
author
Elad Zelingher
committed
Fixing .NET Core build
1 parent 813196d commit bd5d478

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net45/WampSharp/Core/Utilities/ValueTuple/ValueTupleTypeExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static int GetValueTupleLength(this Type type)
8787

8888
public static bool IsLongTuple(this Type tupleType)
8989
{
90-
return tupleType.IsGenericType &&
90+
return tupleType.IsGenericType() &&
9191
tupleType.GetGenericTypeDefinition() == typeof(ValueTuple<,,,,,,,>) &&
9292
tupleType.GetGenericArguments().Last().IsValueTuple();
9393
}

0 commit comments

Comments
 (0)