Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know there are obfuscators that are capable of performing this optimization, but these all cost money. Is there a free (or even open source) tool that removes the unused code in an already compiled assembly?

share|improve this question
1  
Note that doing so might break your assembly: twitter.com/#!/razialx/status/181766075652911107 – Billy ONeal Mar 19 '12 at 15:42
The trick is determining what is unused. – 500 - Internal Server Error Mar 19 '12 at 18:04
1  
What does this have to do with obfuscation? – svick Mar 19 '12 at 18:52
@svick: Not much, other than that most obfuscation tools will do this for you, because they have to have the tools to do this under the hood to do the obfuscation in the first place. – Billy ONeal Mar 20 '12 at 7:00

1 Answer

up vote 1 down vote accepted

There is, it's called the Mono.Linker.

What I wrote three years about the Mono.Linker ago pretty much still stands. It works well, but it's not magical, and could be pretty rough. Plus it usually requires configuration.

On the other hand, it now ships in commercial tools like MonoTouch or Mono for Android, so it's definitely solid, if you don't mind spending some time integrating it.

share|improve this answer
Is there a compiled version somewhere? – blez Mar 19 '12 at 22:03
@blez, all released version of Mono comes with a compiled version of the linker, but I advise you compile it yourself. – Jb Evain Mar 20 '12 at 11:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.