I am trying to write a standalone Doxygen file for my applicaiton as per the top recommendation in Best Tips for documenting code using doxygen?.
In my overview, I'm referencing class files, but the links don't show up.
file A.cs:
namespace NoAutoLinks
{
public class A
{
}
public class B
{
public A A { get; set; }
}
}
file Doxygen.cs:
/// @file Doxygen.cs
/// @mainpage No Auto Links
/// I want to link to A and B here. Even explicit @ref A and \ref B links don't show up here.
The main page is rendered, but there are no links to A or B. In the class page for B, the autolink to A does show up.
Doxyfile does contain AUTOLINK_SUPPORT = YES
I see several articles about turning off autolinking, but nothing about this particular condition of autolink failure.