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
I'm seeing a bunch of WARNINGs like this when using doxygenindex in my rst:
/Users/me/myapp/docs/index.rst:35: WARNING: Failed to find xref for: IActionResult, no objects found that end like this, searched in object types: ['class', 'struct', 'interface', 'function', 'var', 'event', 'enum']
/Users/me/myapp/docs/index.rst:35: WARNING: Failed to find xref for: CancellationToken, no objects found that end like this, searched in object types: ['class', 'struct', 'interface', 'function', 'var', 'event', 'enum']
/Users/me/myapp/docs/index.rst:35: WARNING: Failed to find xref for: ILogger, no objects found that end like this, searched in object types: ['class', 'struct', 'interface', 'function', 'var', 'event', 'enum']
Is this a doxygen issue or an issue with this sphinx plugin? Is it not able to find the libraries for these classes or something?
The text was updated successfully, but these errors were encountered:
It just means that IActionResult won't link to anything when you click on it. Generally, this is when the object has not been declared in your code, e.g. library code. Or it is because of some special case in the syntax, which isn't covered.
I'm seeing a bunch of WARNINGs like this when using
doxygenindex
in my rst:Is this a doxygen issue or an issue with this sphinx plugin? Is it not able to find the libraries for these classes or something?
The text was updated successfully, but these errors were encountered: