From 05341a69b2ca8d382119a908c8f336a2f8fe647d Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 23 Aug 2024 13:24:16 +0100 Subject: [PATCH] Renamed output DLLs to improve clarity --- RecodeItLib/Remapper/ReCodeItRemapper.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/RecodeItLib/Remapper/ReCodeItRemapper.cs b/RecodeItLib/Remapper/ReCodeItRemapper.cs index 51fd346..a10f77b 100644 --- a/RecodeItLib/Remapper/ReCodeItRemapper.cs +++ b/RecodeItLib/Remapper/ReCodeItRemapper.cs @@ -449,8 +449,13 @@ public class ReCodeItRemapper private void WriteAssembly() { var moduleName = Module.Name; - - OutPath = Path.Combine(OutPath, moduleName.Replace(".dll", "-Remapped.dll")); + + var dllName = "-cleaned-remapped.dll"; + if (Settings.MappingSettings.Publicize) + { + dllName = "-cleaned-remapped-publicized.dll"; + } + OutPath = Path.Combine(OutPath, moduleName.Replace(".dll", dllName)); try { @@ -466,7 +471,7 @@ public class ReCodeItRemapper Hollow(); var hollowedDir = Path.GetDirectoryName(OutPath); - var hollowedPath = Path.Combine(hollowedDir, "Hollowed.dll"); + var hollowedPath = Path.Combine(hollowedDir, "Assembly-CSharp-hollowed.dll"); try {