tonerdo / pose

Replace any .NET method (including static and non-virtual) with a delegate
MIT License
1.08k stars 75 forks source link

Houston is anyone there? #55

Open eduardocp opened 4 years ago

eduardocp commented 4 years ago

Is this project still alive?

mrjamiebowman commented 2 years ago

This project looks very promising.

christopherbauer commented 2 years ago

https://github.com/tonerdo/pose/issues/63

hvkooten commented 2 years ago

This project is dead and not working with .NET 6.0

Miista commented 8 months ago

@hvkooten I managed to get it working on net6. Although shimming static methods doesn't work correctly due to the library not handling the InlineSig opcode. Please see: Miista/pose#5

The above is not entirely correct. Shimming static methods work with the caveat that the method cannot call unsafe code as this seems to result in the InlineSig code being emitted, and this opcode is currently not handled. I am handling this in Miista/pose#25 and Miista/pose#9