Reputation: 1560
I have created single layer windows form application and added one Visual Studio Install Setup Project to create the installation wizard using Visual Studio 2013.
So my application contains one .exe file and number of .dll files (SQLite, EntitiyFramework, etc) and other publish items. I am trying to Obfuscate my code using ConfuserEx.
Anyone know how to fix this issue?
Upvotes: 2
Views: 5589
Reputation: 274
Tried and tested all above ways, Failed -> Now look at this way: (A Smaller one)
After building this, the confused/obfuscated exe will be installed.
the issue in above similar solutions is: When you exclude the exe it will not include the executable file at all.
So you simply need to remove the exe generated from the project output and replace it with your obfuscated exe.
Thanks.
Upvotes: 0
Reputation: 11
I have tried your way, it worked for one time only. I found better and easier way to solve this issue as such:
It work well with me
Upvotes: 1
Reputation: 167
I have tried your way, it worked for one time only. I found better and easier way to solve this issue as such:
After building this, the confused exe will be installed.
Upvotes: 0
Reputation: 1560
I find the issue.
I was replacing the ..bin\Release\AppName.exe file instead of ..obj\Release\Appname.exe
Now it is working fine.
Thanks.
Upvotes: 5