Jump to content
Tuts 4 You

ILSpy mod by Medsft: NET assembly browser and decompiler, debugger, Hi


Medsft

Recommended Posts

Great job m8.


 


A little bug : when inspecting a variable the copy menu item doesn't work (neither CTRL+C). this is important when debugging long strings that goes outside the screen boundaries.


 


DjP


Link to comment
  • 2 weeks later...

File replace.Please reload.
Last build 30_03_15_16_29 ("Test version. Need bugreport`s")
+ add Debugger Local Variable panel (C# and IL view code)
+ add video: "How to use local variable panel" 

Link to comment
HotFix.File replace.Please reload.

Last build 30_03_15_18_42 ("Critical")

+fix some bug on debug local variable panel

+add Hex representation to numeric value

+add value viewer

+add jpg "How to use local variable panel"

 


Edited by Medsft
Link to comment
Often people asking about difference between low and high modes. Brief explanation below.

High mode. It is standard ILSpy mode. You make a fix in code and go File - Save assembly.. and get patched assembly on the disk.
Low mode. Fix not applies directly to assembly, but put to patch list. Then you can manage patches using the top level Patch menu.
Finally, the difference is: direct editing (hi) vs patch list (lo).

Link to comment

Option "Debug an executable" does not work with some .NET applications, button "Debug an executable" is disabled for a moment and then enabled again and the application is not executed. I can give an example.Thanks.

Link to comment

To RTSmnq08px


1.Thanks.


2.A`m not repeat you bug. My machine: Win7 32


3.Create txt file with this content ->then load you target to ILSpy NEXT->open menu"Patches" ->find you target in opening load assembly`s treeview -> load you txt file and press apply patch


Content: ILSpy NEXT patch.table for ***

16120;31;22

16121;35;42

16122;40;0

16123;109;0

16124;1;0

16126;10;0

69192;22;23

69193;10;42

Edited by Medsft
Link to comment

To Medsft:You are patching very high: return at the entry of routine, thus proper initializing parameters remain unsettled and: "Save" button disabled, "Registration" button visible. These additional patches should be applied too:15939;55;00
15963;31;00
15977;123;38
15978;43;23
15981;04;00Anyway, it wasn't the matter of patches, just wanted to try the debugger.I don't know whether it is a bug or not but the option "Break debugger at start or attach" does not work for me. Nothing of the kind happens, debugger just runs applications.Thanks. :(

Edited by RTSmnq08px
Link to comment

"I don't know whether it is a bug or not but the option "Break debugger at start or attach" does not work for me."  


Solution: Goto entry point->add breakpoint on first code line-> Call assembly context menu-> Debug Assembly

Link to comment

Some bug fix. File replace.Please reload.


Last build 10_04_15_55_42


+ add load modules panel


+ local variables  on local variables panel -  NOW! editable in run-time debugger mode. (Only primitive type: bool, numeric, string, primitive type array element)


 


029e1c24fa04141f7c56078c37805261.jpeg


  • Like 1
Link to comment

0XzpCkp.png

can't use patches or save assembly :-(

make the dir the pic showen yourself before save action Edited by ghostfish
Link to comment
  • 2 weeks later...
  • 2 weeks later...

Hi Medsft,


 


very good work. I tried it for some days now and it works good.


I noticed some hangups when using the scroll wheel a lot. So I don't use it ;0)


 


But it would be very helpful if I could rename properties too. At present I have to switch over to Reflector (with Reflexil) because then I can rename properties. But iLSpy Next is better and I won't use Reflector at all...


Could You please fix this?


 


Thank You for Your good work.


Link to comment

To tom0021:


"rename properties tooGood idea. Wait next build.


"But iLSpy Next is better and I won't use Reflector at all..." Thank you.


Link to comment
Some bug fix. File replace.Please reload.

Last build 08_05_15_41_00

fix: add rename property.

Rule for rename property:

PropertyDefinition pdef = pdtn.PropertyDefinition;

                    if (pdef.DeclaringType.BaseType != null &&

                        pdef.DeclaringType.BaseType.Name.EndsWith("Attribute") &&

                        pdef.SetMethod != null &&

                        (pdef.SetMethod.Attributes & Mono.Cecil.MethodAttributes.Public) != 0)

                    {

                        //no rename

                    }

                    else

                    {

                        // rename

                    }

Edited by Medsft
Link to comment
  • 4 weeks later...
What's New:

+ all next build`s on hxxp://ilspy-next.ml. We are opened! Welcome, guys!

+ Highlight variables and objects in method (Thanks to YaroslavS for idea)

  + Left click: highlight item

  + Ctrl+Left click: follow item (jump to)

+ add ability to Copy method body to another method...

+ add new option: View instruction bytes

+ add new option: Show hidden name for entities with editable IgnoreNamesReference

~ Fix: Find by member and constant

~ Fix: Analyze menu for selected item in Code View (Thanks to YaroslavS for the bug report)

Edited by Medsft
  • Like 1
Link to comment
  • 3 weeks later...

It would be nice to have these features like,


 


* Multiple tab support - To open different method in separate tab. 

* Save resources to disk

* Deleting multiple IL

 

Its nice to see updates coming.

 

Regards 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...