zed
✅ Modify embedded resources at runtime
For future reference, in case anyone has this problem, I created a new dummy assembly with no code, and just use it as a target to write runtime embedded resources into - coupled with build order settings and one custom build step to assure the file exists and is copied to the output properly, this works for my needs...
9 replies
✅ Modify embedded resources at runtime
Thanks, but that wouldn't work in my case, because the third party component calls
assembly.GetManifestResourceNames
directly and uses that, so I would need to adjust it so that this function call includes the runtime data9 replies
✅ Resolving an ambiguous assembly reference
Sorry this is taking me so long >< This worked, that is a pretty great feature, thanks for telling me about it.
It helped me narrow it down a bit further. I debugged the .NET WCF library in question, and I think it comes down to this code:
Unfortunately I can't be 100% sure, since my source mismatch is pretty wide. Not sure why, I downloaded the 4.8 reference source and tried to debug using that, but the file is nowhere close to the symbol information :\
50 replies
✅ Resolving an ambiguous assembly reference
It's just hollowed out, not sure... since that function is called a billion times, I added a condition, but debugging it will probably take an hour or so like this, so I'm still waiting, but it still shows only as hollowed out
50 replies
✅ Resolving an ambiguous assembly reference
Unfortunately, I'm still not seeing any local variables or parameters x.x I tried a few other things, still not getting very far. I just had an idea to set a breakpoint on
mscorlib.dll!System.Type.GetType(string)
but not sure if that works, do you happen to know what I have to do to be able to do that? If it works at all...50 replies