How to exclude attribute [System.Runtime.InteropServices.ComVisible(false)] #8050
Unanswered
BasketGolfer
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Trying to exclude classes or methods with attribute [System.Runtime.InteropServices.ComVisible(false)
I am successfully implementing a filter.yml using the default from here
https://dotnet.github.io/docfx/tutorial/howto_filter_out_unwanted_apis_attributes.html
I do not know how to troubleshoot what I'm adding to the filter.
I've tried:
exclude:
hasAttribute:
uid: System.Runtime.InteropServices.ComVisible
ctorNamedArguments:
visibility: "false"
exclude:
hasAttribute:
uid: System.Runtime.InteropServices.ComVisible
I even tried
hasAttribute:
uid: System.Runtime.InteropServices.ComVisible
Just to see if its looking at the attribute at all regardless of the value
No difference in results
Beta Was this translation helpful? Give feedback.
All reactions