From 6161cef13f0d7a4b16f81637ba38c5aabb5f055e Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sun, 28 Apr 2024 10:39:48 -0400 Subject: [PATCH 1/2] Fix issue with not including using Newtonsoft.Json.Linq; --- Console/KeyAuth.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Console/KeyAuth.cs b/Console/KeyAuth.cs index 76b96ec..31b6182 100644 --- a/Console/KeyAuth.cs +++ b/Console/KeyAuth.cs @@ -11,9 +11,10 @@ using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; using System.Net.Security; -using System.Windows; +using Newtonsoft.Json; using System.Threading; using System.Runtime.CompilerServices; +using Newtonsoft.Json.Linq; namespace KeyAuth { From 4630fe2cbd028f806bfbb87a0b6c6da321fca216 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sun, 28 Apr 2024 10:40:16 -0400 Subject: [PATCH 2/2] Fix the issue with not including using Newtonsoft.Json.Linq; --- Form/KeyAuth.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Form/KeyAuth.cs b/Form/KeyAuth.cs index 5034a59..0d3d7f4 100644 --- a/Form/KeyAuth.cs +++ b/Form/KeyAuth.cs @@ -11,9 +11,10 @@ using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; using System.Net.Security; -using System.Windows; +using Newtonsoft.Json; using System.Threading; using System.Runtime.CompilerServices; +using Newtonsoft.Json.Linq; namespace KeyAuth {