修复LinkXmlProcess::GenerateAdditionalLinkXmlFile返回的link.xml为相对路径,没有生效的bug
parent
29debc44bf
commit
f908b648c1
|
@ -80,8 +80,8 @@ namespace Obfuz.Unity
|
||||||
{
|
{
|
||||||
writer.Close();
|
writer.Close();
|
||||||
}
|
}
|
||||||
Debug.Log($"LinkXmlProcess write {linkXmlPath}");
|
Debug.Log($"LinkXmlProcess write {Path.GetFullPath(linkXmlPath)}");
|
||||||
return linkXmlPath;
|
return Path.GetFullPath(linkXmlPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void TransformLinkXml(string xmlFile, LiteSymbolMappingReader symbolMapping, HashSet<string> assembliesToObfuscated, XmlWriter writer)
|
private static void TransformLinkXml(string xmlFile, LiteSymbolMappingReader symbolMapping, HashSet<string> assembliesToObfuscated, XmlWriter writer)
|
||||||
|
|
Loading…
Reference in New Issue