How do you go about finding unused icons, images, strings in .resx files that may have become 'orphaned' and are no longer required?
|
|
This is no information an algorithm can reliably compute. The inspected program could fetch a list of all resources and do something with them, like letting the user choose from several icons. Your best bet is probably to search for all references to your resource-access API of choice and inspect those manually. Using |
||
|
|
|
|
I've been considering this myself and I believe I have two options. Both of these rely on the fact that I use a helper method to extract the required resource from the resource files.
There are limitations of both methods. The logging method is only as good as the code covered by the test and the code analysis might not always find keys rather than strings containg the keys so there will be some extra manual work required there. I think I'll try both. I'll let you know how it goes. |
||
|
|
