diff --git a/src/GraphQL.Client/GraphQL.Client.csproj b/src/GraphQL.Client/GraphQL.Client.csproj
index 366ee893..53e9585e 100644
--- a/src/GraphQL.Client/GraphQL.Client.csproj
+++ b/src/GraphQL.Client/GraphQL.Client.csproj
@@ -11,10 +11,6 @@
netstandard1.1;netstandard1.3;netstandard2.0
-
-
-
-
diff --git a/src/GraphQL.Common/GraphQL.Common.csproj b/src/GraphQL.Common/GraphQL.Common.csproj
index e7e73676..363a2030 100644
--- a/src/GraphQL.Common/GraphQL.Common.csproj
+++ b/src/GraphQL.Common/GraphQL.Common.csproj
@@ -13,6 +13,7 @@
+
diff --git a/src/GraphQL.Common/Response/GraphQLError.cs b/src/GraphQL.Common/Response/GraphQLError.cs
index 70ad1af0..a056418b 100644
--- a/src/GraphQL.Common/Response/GraphQLError.cs
+++ b/src/GraphQL.Common/Response/GraphQLError.cs
@@ -1,3 +1,7 @@
+using System.Collections.Generic;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
+
namespace GraphQL.Common.Response {
///
@@ -15,6 +19,12 @@ public class GraphQLError {
///
public GraphQLLocation[] Locations { get; set; }
+ ///
+ /// Additional error entries
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditonalEntries { get; set; }
+
}
}
diff --git a/tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj b/tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj
index 2af711b9..6b9ef96c 100644
--- a/tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj
+++ b/tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj
@@ -12,4 +12,8 @@
-
\ No newline at end of file
+
+
+
+
+