My project is using .NET core "7.0" and the targeted module is "4.8" and when I try to import "GetString" method and inject it to the module using Dnlib, it references the higher version "7.0" instead of "4.8" and the output exe will crash because it can't find that higher reference dll.
....
....
body.Instructions.Add(new Instruction(OpCodes.Call, module.Import(typeof(Encoding).GetMethod("get_UTF8", new Type[] { }))));
.....
.....
body.Instructions.Add(new Instruction(OpCodes.Callvirt, module.Import(typeof(System.Text.Encoding).GetMethod("GetString", new Type[] { typeof(byte[]), typeof(Int32), typeof(Int32) }))));
Any Idea how to import the right version.