Hey, On Sep 17, 2011, at 12:30 PM, Greg Young wrote: > Basically I want to do something like what source server does (eg > rewrite the filenames in a pdb). Is there a direct way to do this or > do I need to go through all of the types etc. I will try playing with > the SymbolReader but figured someone may have done something like this > before.
Using Cecil directly, there's no way to manipulate the raw symbols. You'd have to go through all the sequence points of the different method bodies. I think you'd be better off to not use Cecil in this case and use the APIs that Mono.Cecil.Pdb uses internally directly. Jb -- -- mono-cecil
