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
namespaceClassLibrary1{/// <summary>/// This is a test class/// </summary>/// <seealso cref="System.Object"/>publicclassClass1{/// <summary>/// This is a test summary/// </summary>/// <value>/// <see langword="string"/> is test/// </value>publicstringTestStringProperty{get;set;}}}
After build, I will got two files ClassLibrary1.dll and ClassLibrary1.xml, xml will with this content:
<?xml version="1.0"?>
<doc>
<assembly>
<name>ClassLibrary1</name>
</assembly>
<members>
<membername="T:ClassLibrary1.Class1">
<summary>
This is a test class
</summary>
<seealsocref="T:System.Object"/>
</member>
<membername="P:ClassLibrary1.Class1.TestStringProperty">
<summary>
This is a test summary
</summary>
<value>
<seelangword="string"/> is test
</value>
</member>
</members>
</doc>
Expected behavior
all the content should be rendered in generated markdown page.
but, the property value is not rendered correctly:
Context (please complete the following information):
I have a Class with comment like this:
After build, I will got two files ClassLibrary1.dll and ClassLibrary1.xml, xml will with this content:
Expected behavior
all the content should be rendered in generated markdown page.
but, the property value is not rendered correctly:
Context (please complete the following information):
OS: Windows
Docfx version: 2.78.2
.NET version: .NET 8.0
docfx.json
configThe text was updated successfully, but these errors were encountered: