Solution cleanup

This commit is contained in:
Alexander Horner
2022-12-08 19:33:08 +00:00
parent b644035433
commit d90ddc3be4
8 changed files with 8 additions and 16 deletions

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>

View File

@@ -7,6 +7,7 @@ using System.Linq;
using System.Reflection;
using System.Windows.Forms;
using Newtonsoft.Json;
using ntfysh_client.Notifications;
namespace ntfysh_client
{

View File

@@ -1,5 +1,4 @@
using Newtonsoft.Json;
using System;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
@@ -12,8 +11,9 @@ using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
using Newtonsoft.Json;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class NotificationListener
{

View File

@@ -1,6 +1,6 @@
using System;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class NotificationReceiveEventArgs : EventArgs
{

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class NtfyEvent
{

View File

@@ -3,7 +3,7 @@ using System.Threading;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class SubscribedTopic
{

View File

@@ -4,6 +4,7 @@ using System.IO;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
using ntfysh_client.Notifications;
namespace ntfysh_client
{

View File

@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net472" />
</packages>