Is there a (better) way to find all references to a property setter?

It is possible in Visual Studio 2019 to sort and filter by "Kind" using the "Find All References" function. The feature was requested on Microsoft's developercommunity forum

The "references" window with the "Kind" column is displayed to the very right, highlighted by a orange box. references window with the "Kind" column


Resharper can do that for you.

Without R#, one way would be to temporarly set the setter to private and recompile. That will give an error everywhere you're trying to set. Not pretty, but faster than any other method I can think of.