-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Problem with virtual property not being pulled through #4
Comments
Virtual properties are supported, but only if the base class is located in your solution. I suspect you are trying to pull through something like "Object.ToString()" where the base class is not located in your solution. I do not currently support pulling that through because Roslyn does not have that documentation in the model. I would need to manually look up the xml, which I haven't gotten to yet. I will keep this open as a good enhancement if I ever get to it. |
Actually I an seeing that on classes in the same project with properties from base classes in the solution. |
Interesting... Can you give a little more details? I definitely have a passing unit test for this exact scenario, so there must be something else at play here: |
ooooooooooh wait - PROPERTIES and not methods? I think i misread this whole thing... let me look into that... |
Ok, I think I still need more information about your setup. Properties seem to work just fine for me (i tried both public and protected). In your project, how are the classes related to each other in the project structure? Maybe some sample code would help too. |
Will check whats the relation of the classes here. But its all in the same project (C# 8, .Net Core), give me a day to find out, its not happening with all properties in just any class. |
Did you ever get a chance to look at this? Could this just be the same issue we just made #9 ? |
I am testing here with a larger project I am working on, i remember that this was not a constant problem but rather limited to some classes. Since this project uses practically none of the .NET classes to derive of, I think its not related to the other issue. |
The comments of virtual properties are not available to pull through.
The text was updated successfully, but these errors were encountered: