I'm trying to put all what belongs to my WPF Commands into one region with ReSharpers Code Cleanup
. I've tried following XML inside my working pattern. But this isn't working. I guess the match isn't working.
Also I would like to move methods with specific parameters. Is this anyway possible?
I'm using ReSharper 7.1.1.
<Entry>
<Match>
<Or>
<ImplementsInterface CLRName="ICommand">
<ImplementsInterface CLRName="ISimpleCommand">
</Or>
</Match>
<Sort>
<Access Order="public internal protected-internal protected private" />
</Sort>
<Group Region="Commands"/>
</Entry>