Renamed output DLLs to improve clarity

This commit is contained in:
Dev 2024-08-23 13:24:16 +01:00
parent e22af4ef15
commit 05341a69b2

View File

@ -450,7 +450,12 @@ public class ReCodeItRemapper
{ {
var moduleName = Module.Name; 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 try
{ {
@ -466,7 +471,7 @@ public class ReCodeItRemapper
Hollow(); Hollow();
var hollowedDir = Path.GetDirectoryName(OutPath); var hollowedDir = Path.GetDirectoryName(OutPath);
var hollowedPath = Path.Combine(hollowedDir, "Hollowed.dll"); var hollowedPath = Path.Combine(hollowedDir, "Assembly-CSharp-hollowed.dll");
try try
{ {