You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i debug the app with dnspy, some dll files are available in modules window of dnspy. How can i extract these dll files from App assembly using dnpatch or dnlib ? Thanks
The text was updated successfully, but these errors were encountered:
you can only extract loaded modules when app is running, dnpatch and dnlib does everything with assemblies themselves without running, so it's not possible, usually loaded modules are referenced assemblies, so you can get assembly references, but this will only work for non packed and non obfuscated assemblies, because packed/merged/obfuscated assemblies might have modules integrated as resources, and to extract them you will need to write some script by yourself
When i debug the app with dnspy, some dll files are available in modules window of dnspy. How can i extract these dll files from App assembly using dnpatch or dnlib ? Thanks
The text was updated successfully, but these errors were encountered: