-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle InlineSig in MethodRewriter #25
Comments
I'm changing this to medium priority since we are seeing the issue on .NET 6 as noted in #9 |
The following is a minimal working example: var dateTimeShim = Shim.Replace(() => DateTime.Now).With(() => new DateTime(2004, 1, 1));
PoseContext.Isolate(
() =>
{
Console.WriteLine(DateTime.UtcNow);
}, dateTimeShim); Invoking the above code results in Adding supportIt seems we can add support by:
Update
|
Please refer to tonerdo/pose#30
This has low priority until we have investigated the impact on not being able to handle the instruction.
The text was updated successfully, but these errors were encountered: