diff --git a/.vs/Switch_Toolbox/v15/.suo b/.vs/Switch_Toolbox/v15/.suo index 37c1f62a..a0516340 100644 Binary files a/.vs/Switch_Toolbox/v15/.suo and b/.vs/Switch_Toolbox/v15/.suo differ diff --git a/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache b/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache index f7ef7165..968fd46d 100644 Binary files a/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache and b/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Updater/Program.cs b/Updater/Program.cs index ec1d1152..2de95f40 100644 --- a/Updater/Program.cs +++ b/Updater/Program.cs @@ -122,6 +122,9 @@ namespace Updater if (Directory.Exists(downloadName + "/")) Directory.Delete(downloadName + "/", true); ZipFile.ExtractToDirectory(downloadName + ".zip", downloadName + "/"); + + //Zip not needed anymore + File.Delete(downloadName + ".zip"); string versionTxt = Path.Combine(Path.GetFullPath(downloadName + "/"), "Version.txt"); using (StreamWriter writer = new StreamWriter(versionTxt))