I wanted to test several design patterns in C # code by static analysis. I found that by creating a plugin for Resharper, I can check the templates on the fly while I code. But I did not find good documentation related to its open APIs. Are there any links where I can find suitable documentation.
I use the MVVM pattern, so I want to check that the View-Model classes have no dependency on classes or user interface elements (WPF elements).
source share