Is there an automatic way in ASP.NET to tell which resources are not used anywhere in code and markup? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T06:16:48Zhttp://stackoverflow.com/feeds/question/740742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/740742/is-there-an-automatic-way-in-asp-net-to-tell-which-resources-are-not-used-anywher0Is there an automatic way in ASP.NET to tell which resources are not used anywhere in code and markup?User2009-04-11T20:41:04Z2009-04-12T13:36:27Z
<p>I believe lots of us have been presented with a challenge to check manually through hundreds of string constants to check which ones are used and which are not (orphans). Although I do not have that many yet in my current project, I still find it difficult already to do a code review and check for dropped constants manually.</p>
<p>Is there any way to automate this? Maybe some secret hidden feature in VS?</p>
<p>I have an ASP.NET MVC project with VS 2008. So I'd like to check for all possible references to resources in both .cs and .aspx files.</p>
<p>My guess is that would not be possible. Still, maybe there is something to help me with this task?</p>
http://stackoverflow.com/questions/740742/is-there-an-automatic-way-in-asp-net-to-tell-which-resources-are-not-used-anywher/740750#7407502Answer by dommer for Is there an automatic way in ASP.NET to tell which resources are not used anywhere in code and markup?dommer2009-04-11T20:48:25Z2009-04-11T20:48:25Z<p><a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/Coding%5FAssistance/" rel="nofollow">CodeRush</a> from Developer Express provides all sorts of orphan checks. They just released a free version - <a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/CodeRushX/" rel="nofollow">CodeRush Express</a> - although I'm not entirely sure what features are in the free version. Would seem plausible that a feature like this would have been left in, though.</p>
<p>It's a pretty powerful tool, so I'd recommend it anyway.</p>
http://stackoverflow.com/questions/740742/is-there-an-automatic-way-in-asp-net-to-tell-which-resources-are-not-used-anywher/740774#7407741Answer by Steve Willcock for Is there an automatic way in ASP.NET to tell which resources are not used anywhere in code and markup?Steve Willcock2009-04-11T21:03:44Z2009-04-11T21:03:44Z<p>NDepend supports searching for unused public methods / properties etc. Also, Resharper 4.5 now highlights all unused non-private members if you turn on solution wide analysis.</p>
http://stackoverflow.com/questions/740742/is-there-an-automatic-way-in-asp-net-to-tell-which-resources-are-not-used-anywher/741782#7417821Answer by devmania for Is there an automatic way in ASP.NET to tell which resources are not used anywhere in code and markup?devmania2009-04-12T13:36:27Z2009-04-12T13:36:27Z<p>Also Resharper is the best tool for VS IDE,it does all that for you plus many other options.</p>
<p>hope this helps.</p>