fix: fix a serious bug that didn't setup _obfuscatedAssemblyTempOutputPath which make all obfuscation passes exclude symbol obfuscation were skipped!

before-split
walon 2025-05-22 10:09:02 +08:00
parent 4398ee0875
commit 69a4cd686f
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ namespace Obfuz
FileUtil.RecreateDir(_obfuscatedAssemblyOutputPath);
FileUtil.RecreateDir(_obfuscatedAssemblyTempOutputPath);
RunPipeline(_pipeline1);
_assemblyResolver.InsertFirst(new PathAssemblyResolver(_obfuscatedAssemblyOutputPath));
_assemblyResolver.InsertFirst(new PathAssemblyResolver(_obfuscatedAssemblyTempOutputPath));
RunPipeline(_pipeline2);
FileUtil.CopyDir(_obfuscatedAssemblyTempOutputPath, _obfuscatedAssemblyOutputPath, true);
Debug.Log($"Obfuscator Run. end");