Kirill Osenkov
Kirill Osenkov
Yes, these are raw and some assembly is certainly required, sorry about that. This project is a collection of tools for various purposes, did you have a particular tool in...
`cinst` is Chocolatey installer, https://chocolatey.org is a way to quickly install software, you'd need to install Chocolatey first via https://chocolatey.org/install, then cinst would work. But the instructions above don't require...
Here's a PR that adds a unit-test: https://github.com/benaadams/Ben.Demystifier/pull/110 It is significant that the method parameter type is a nested type of a generic type where the generic type parameter is...
Basically the logic for value tuples needs to be aware of nested types of generic types that themselves don't have a backtick in the name: https://github.com/benaadams/Ben.Demystifier/blob/0f17b3029b842b0886ce49cafc3032184805873e/src/Ben.Demystifier/ValueTupleResolvedParameter.cs#L23-L26
My advice here is to simply not call `Path.GetFullPath()`, and simply append the string you're given. Or maybe find a different way to detect whether Path.GetFullPath needs to be called....
Hey all, there are actually two options if you want to pursue getting this library to work on a Mac. One is .NET Core, and another is Mono. Unlike .NET...
There should be a catch block in `RestoreOriginalModules()` since the Retry can throw
Minor convenience for those debugging Cecil :) But you decide. The .dll size increase is around 15-20%.
If you think this is worth pursuing I can send a PR.
@jbevain here's an attempt to break the circularity of type forwarders: https://github.com/jbevain/cecil/pull/806