From 1964548acbc56edb346d2e396eb0108010d869e1 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Thu, 9 Sep 2021 17:28:10 -0400 Subject: port to .NET 5 dependency changes - Newtonsoft.JSON + System.Windows.Forms.DataVisualization + System.Data.SqlClient (indirect, but was not added automatically by NuGet) added ARM64 target --- writer/Program.cs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'writer/Program.cs') diff --git a/writer/Program.cs b/writer/Program.cs index 83daed1..1a27a11 100644 --- a/writer/Program.cs +++ b/writer/Program.cs @@ -1,9 +1,6 @@ -using Newtonsoft.Json; - -using System; -using System.Collections.Generic; +using System; using System.IO; -using System.Linq; +using System.Text.Json; using System.Windows.Forms; namespace writer @@ -12,7 +9,7 @@ namespace writer class Program { static readonly string DefaultPath = "settings.json"; - static readonly string Usage = + static readonly string Usage = $"Usage: {AppDomain.CurrentDomain.FriendlyName} \n"; static void Exit(string msg) -- cgit v1.2.3