修复LinkXmlProcess::GenerateAdditionalLinkXmlFile返回的link.xml为相对路径,没有生效的bug
parent
29debc44bf
commit
f908b648c1
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue