From 54465ff4e75ee66da2df134f937d7f39731c48f2 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 26 Feb 2021 09:34:07 -0800 Subject: [PATCH] Move both installers to packers --- BurnOutSharp/{ProtectionType => PackerType}/InnoSetup.cs | 2 +- BurnOutSharp/{ProtectionType => PackerType}/WiseInstaller.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename BurnOutSharp/{ProtectionType => PackerType}/InnoSetup.cs (98%) rename BurnOutSharp/{ProtectionType => PackerType}/WiseInstaller.cs (98%) diff --git a/BurnOutSharp/ProtectionType/InnoSetup.cs b/BurnOutSharp/PackerType/InnoSetup.cs similarity index 98% rename from BurnOutSharp/ProtectionType/InnoSetup.cs rename to BurnOutSharp/PackerType/InnoSetup.cs index 2577baa6..75b91dfa 100644 --- a/BurnOutSharp/ProtectionType/InnoSetup.cs +++ b/BurnOutSharp/PackerType/InnoSetup.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class InnoSetup : IContentCheck, IScannable { diff --git a/BurnOutSharp/ProtectionType/WiseInstaller.cs b/BurnOutSharp/PackerType/WiseInstaller.cs similarity index 98% rename from BurnOutSharp/ProtectionType/WiseInstaller.cs rename to BurnOutSharp/PackerType/WiseInstaller.cs index a03890a4..582eb7d8 100644 --- a/BurnOutSharp/ProtectionType/WiseInstaller.cs +++ b/BurnOutSharp/PackerType/WiseInstaller.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.IO; using Wise = WiseUnpacker.WiseUnpacker; -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class WiseInstaller : IContentCheck, IScannable {