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
Instead see a Stackoverflow Exception when building:
Info: [Build Document.TocDocumentProcessor]Building 3 file(s) in TocDocumentProcessor(BuildTocDocument)...
Info: [Build Document.ManagedReferenceDocumentProcessor]Building 134 file(s) in ManagedReferenceDocumentProcessor(BuildM
anagedReferenceDocument=>ApplyOverwriteDocumentForMref=>FillReferenceInformation)...
Process is terminated due to StackOverflowException in mscorlib.
A significant number of YAML docs are created in the api folder but no html docs generated
The text was updated successfully, but these errors were encountered:
Took us a while to get minimal repro as below where circular references cause this StackOverflowException.
`
public class Program
{
static void Main(string[] args)
{
}
/// <seealso cref="Program.B"/>
public int A()
{
return 0;
}
/// <seealso cref="Program.A"/>
public int B()
{
return 0;
}
}
Unable to build the doc site for a single project even though YAML files are being generated
Minimal repro steps:
Expected to see the documentation site available at http://localhost:8080
Instead see a Stackoverflow Exception when building:
Info: [Build Document.TocDocumentProcessor]Building 3 file(s) in TocDocumentProcessor(BuildTocDocument)...
Info: [Build Document.ManagedReferenceDocumentProcessor]Building 134 file(s) in ManagedReferenceDocumentProcessor(BuildM
anagedReferenceDocument=>ApplyOverwriteDocumentForMref=>FillReferenceInformation)...
Process is terminated due to StackOverflowException in mscorlib.
A significant number of YAML docs are created in the api folder but no html docs generated
The text was updated successfully, but these errors were encountered: