Renamed output DLLs to improve clarity
This commit is contained in:
parent
e22af4ef15
commit
05341a69b2
@ -450,7 +450,12 @@ public class ReCodeItRemapper
|
||||
{
|
||||
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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user