Disasmo
Disasmo copied to clipboard
VS2022 Add-in. Click on any method or class to see what .NET Core's JIT generates for them (ASM).
It seems that Disasmo does not support projects with multiple TargetFrameworks. Can this be fixed?
This line will crash VS if network is not connected: https://github.com/EgorBo/Disasmo/blob/d0079ea73e07a9e89ce916d0613aaac76f70e0c4/src/Vsix/Utils/IntrinsicsSourcesService.cs#L57
Admittedly this is not personally for me, but discover during testing on VS2022 
When create new application for .NET 6 it is missing Main method, and I have to create new method to find that Disasmo opens using autocomplete.
I think it would be practical to have settings to live in the default VS Options dialog. At least that's make things a it easier to discover during first time...
Hi, Trying to install on Vs2019 enterprise 16.10.4, setup is always complaning about VSIXInstaller.NoApplicableSKUsException Am I missing something ? Thanks. [dd_VSIXInstaller_20210807145614_0c34.log](https://github.com/EgorBo/Disasmo/files/6949607/dd_VSIXInstaller_20210807145614_0c34.log)
It should just reference dlls and allow the roslyn host to load them. Right now, the extension (along with some others) cause my VS to not show quick info. :D
https://github.com/EgorBo/Disasmo/commit/21619e8d7414b2888107c0f97eca463c878c936f removed the option "prefer checked runtime" and now disassembly is always done using checked runtime which unfortunately means that various runtime asserts and extra validations are also left in...
I totally get that this depends on the size of method that user asks to disassemble, but just opening an issue, in case, you have plans to improve it. I...
I'm trying to Disasm any .NET Core 3.1 based method as shown in the example (including the example method: InefficientJoin), but I'm getting 0x80004005 error. 1. I cloned dotnet/runtime. 2....