holly-hacker / dnSpy.Extension.HoLLy

A dnSpy extension to aid reversing of obfuscated assemblies
GNU General Public License v3.0
342 stars 31 forks source link

Introduce async/await #20

Open holly-hacker opened 5 years ago

holly-hacker commented 5 years ago

Most code runs on the UI thread and is thus blocking. That includes DLL Injection, which is bad because it can take a while.

This also prevents embarrassing issues such as 0xd4d/dnSpy#1212.

holly-hacker commented 5 years ago

Planning on implementing this on the unity-dll-injection branch.

holly-hacker commented 5 years ago

Not needed yet and pretty invasive, I'll do this later when we're actually trying to perform work on the UI thread.