You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<xref:UnityEngine.GameObject> failed to resolve the link.
But <xref:UnityEngine.Behaviour> works as expected.
This seems to be caused by the sort order of xrefmap.yml file. docfx expecting sorted xrefmap should be sorted by Uid with InvariantCulture string comparer.
On my environment.
<xref:UnityEngine.GameObject>
failed to resolve the link.But
<xref:UnityEngine.Behaviour>
works as expected.This seems to be caused by the sort order of
xrefmap.yml
file.docfx
expecting sortedxrefmap
should be sorted byUid
withInvariantCulture
string comparer.But the current contents of
xrefmap.json
seem to be sorted by other string comparer.And it causes failure search uid with `BinarySearch'.
https://github.com/dotnet/docfx/blob/7d511fb032de82d0105f08e1f649b2b066697397/src/Docfx.Build/XRefMaps/BasicXRefMapReader.cs#L36
The text was updated successfully, but these errors were encountered: