How to use ConfuserEx?

后端 未结 4 1132
情话喂你
情话喂你 2021-01-30 03:22

I\'d like to have a try on this program but I couldn\'t figure out how to use it.

I\'ve search on the author\'s site https://github.com/yck1509/ConfuserEx but the examp

4条回答
  •  抹茶落季
    2021-01-30 04:05

    For anyone else struggling with problems: I downloaded it and the master is missing the dnlib. You can separately download the dnlib copy it into the dnlib folder and then would compile.

    That should work for most, however for me against my exe it gave a "improper dos format" error on any exe. Thought maybe since I had updated to vs2015 and 4.5.3 (.net 5 or 6 or whatever they want to call it now). I figured maybe that was it. but it wasn't (Highest compile was 4.5).

    Looking on google my assumption was it couldn't update the files so spent 1 hour + converting the tuples from your class to .net 4 tuples. and updating all the projects to 4.5.

    If you can, you guys need to check your github fork and hit download then then compile.. it should compile from the site and does not. I am sure this is a great product. Just a bit rough since it isn't made for Juniors to use. Maybe you could just have a link to an EXE? That may help so people aren't dealing with the compile issues.

    Btw really good stuff, looks like this does a lot of stuff even the paid ones don't just a bit of a curve on learning.

    Another note it looks like you have a RuntimeEnvironment.GetSystemVersion()[1] == 4 in there it should probably be (with some parsing) RuntimeEnvironment.GetSystemVersion()[1] > 3.9 so you get 4 and 4.5

    **update. Updated to 4.5 and drag and drop stopped working, still works as you described above. was going with 4.5.3 but you aren't using any of the new functionality.

    What I ended up with, I will edit later to state if it's working. https://onedrive.live.com/redir?resid=88D92E4D40C0593C%21105

    Going with above.

提交回复
热议问题