Not quite sure where to ask this.
Basically, I handle localization for our product. I need a way to extract all literal strings from compiled assemblies. I need to get the line number and source file (for comparison purposes). I've been using FxCop, and I just created a rule to spit out all of the "ldstr" instructions. But, this relies on FxCop which is obsolete (I believe). I also considered using ildasm, but I can't find any tutorials on how to parse the output to reliably retrieve the information I need.
So, is there a utility to handle this? A simple way I'm not thinking of? I'd like to avoid extensions like ReSharper as well because it only operates on the current state of your solution; e.g. I can't produce output to use for comparison.