We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The GetXmlDocsSummary method currently does not return a value for properties inherited from classes of other projects
GetXmlDocsSummary
A simple example: Project A
public class MainTest { public static void Main() { foreach (PropertyInfo prop in typeof(ChildClass).GetProperties()) { Console.WriteLine("Name: " + prop.Name); Console.WriteLine("Summary: " + prop.GetXmlDocsSummary()); } } } public class ChildClass : ParentClass { }
Project B
public class ParentClass { /// <summary> /// This summary will not be shown /// </summary> public string Value { get; set; } }
Output: Name: Value Summary:
The text was updated successfully, but these errors were encountered:
Is this failing because XML Docs of referenced projects is missing in the output directory?
Sorry, something went wrong.
No branches or pull requests
The
GetXmlDocsSummary
method currently does not return a value for properties inherited from classes of other projectsA simple example:
Project A
Project B
Output:
Name: Value
Summary:
The text was updated successfully, but these errors were encountered: