修复LinkXmlProcess::GenerateAdditionalLinkXmlFile返回的link.xml为相对路径,没有生效的bug

main
walon 2025-07-03 12:41:06 +08:00
parent 29debc44bf
commit f908b648c1
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ namespace Obfuz.Unity
{
writer.Close();
}
Debug.Log($"LinkXmlProcess write {linkXmlPath}");
return linkXmlPath;
Debug.Log($"LinkXmlProcess write {Path.GetFullPath(linkXmlPath)}");
return Path.GetFullPath(linkXmlPath);
}
private static void TransformLinkXml(string xmlFile, LiteSymbolMappingReader symbolMapping, HashSet<string> assembliesToObfuscated, XmlWriter writer)