From a578024e30f1edcf039b29d4ceb8a2e7e79f3956 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Fri, 23 Aug 2024 17:16:00 +0200 Subject: [PATCH] Move Updater.cs into App folder --- PCK-Studio/Internal/{ => App}/Updater.cs | 2 +- PCK-Studio/PckStudio.csproj | 2 +- PCK-Studio/Program.cs | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) rename PCK-Studio/Internal/{ => App}/Updater.cs (98%) diff --git a/PCK-Studio/Internal/Updater.cs b/PCK-Studio/Internal/App/Updater.cs similarity index 98% rename from PCK-Studio/Internal/Updater.cs rename to PCK-Studio/Internal/App/Updater.cs index 84a1b86a..13ab8a6b 100644 --- a/PCK-Studio/Internal/Updater.cs +++ b/PCK-Studio/Internal/App/Updater.cs @@ -6,7 +6,7 @@ using Newtonsoft.Json; using PckStudio.Internal.Json; using PckStudio.Properties; -namespace PckStudio.Internal +namespace PckStudio.Internal.App { internal static class Updater { diff --git a/PCK-Studio/PckStudio.csproj b/PCK-Studio/PckStudio.csproj index 5128d99f..9c4aefbf 100644 --- a/PCK-Studio/PckStudio.csproj +++ b/PCK-Studio/PckStudio.csproj @@ -170,7 +170,7 @@ - + True True diff --git a/PCK-Studio/Program.cs b/PCK-Studio/Program.cs index da41cac4..64c19d7e 100644 --- a/PCK-Studio/Program.cs +++ b/PCK-Studio/Program.cs @@ -1,14 +1,9 @@ using System; using System.Diagnostics; using System.IO; -using System.Text.RegularExpressions; using System.Windows.Forms; using PckStudio.Internal.Misc; -using PckStudio.Internal; -using PckStudio.Properties; using PckStudio.Internal.App; -using AutoUpdaterDotNET; -using Newtonsoft.Json; namespace PckStudio