i'm trying to change a DLL of a Net 4.0 Application with Reflexil. The directory looks like this:
Main.exe
SomeOther.exe
Lib1.dll
Lib2.dll
Lib3.dll
...
Now I'm trying to change some IL code in any of these files with Reflector 7.5.3.8 Trail and Reflexil 1.5. For example, I remove all the code from the Main() method in Main.exe (THE main method, I'm sure about this) leaving nothing but a ret. After saving the changes, I still don't see any effect, the program starts as usual.
I guess the problem is, that there is still a cached version of that file somewhere. How do I solve that problem?
What do I have to do to change IL code of the DLLs?