On Jul 2, 2012, at 12:45 PM, Matthew Leibowitz wrote:
> Just a question, is there any way to get some sport of list of removed 
> members and types?

ildasm/monodis/monop are your friends. :-)

For example, bin\Release\AssemblyName.dll will be the original (unlinked) 
assembly, while obj\Release\android\assets\AssemblyName.dll will be the linked 
version. You can ildasm and compare the IL for each assembly, or (on OS X) use 
`monop`:

        monop -r:bin/Release/AssemblyName.dll Fully.Qualified.Type.Name > 
orig.txt
        monop -r:bin/Release/android/assets/AssemblyName.dll 
Fully.Qualified.Type.Name > linked.txt
        diff -u orig.txt linked.txt

 - Jon

_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to