I would like to have a tool: which finds and indicates unreferenced public properties in C# classes.
I tried RuleSet, CodeMaid and StyleCop already but I did not find the corresponding option.
Is there a tool for this or is there an option which I missed with the tools enumerated above?
Is Resharper applicable for this ? I rather use a free tool btw...
What would you implement to solve this problem? I thought about a Visual Studio extension which calls the find all references for every public property in class and leaves an obsolete attribute above the property if it doesn't have any references. Is it possible?
But I think there should be an easier way which I miss.
Thanks in advance :)