I am using dotfuscator for the protecting of my hello.exe
and supporting files like
- hello.dll
- hello.xml
But the problem is that dotfuscator is taking input as only hello.exe
file,and dotfuscate it.
But it's not executing.
I think after the dotfuscation the dll & xml is not supporting to the exe.
I am using command
"dotfuscator -in:C:\Users\Administrat开发者_如何学Cor\Desktop\Hello\bin\x86\Debug\Hello.exe"
It's working fine,but the command
"dotfuscator -in:C:\Users\Administrator\Desktop\Hello\bin\x86\Debug\Hello.exe,Hello.dll,Hello.xml"
The given error is "Input assembly Hello.dll does not exist" even though Hello.dll is also there.
You need to start DotFuscator from the directory where the DLL and EXE files are located.
In your case this is C:\Users\Administrator\Desktop\Hello\bin\x86\Debug\
As an alternative you could pass the full path to every component after the /in switch
e.g.
"dotfuscator -in:C:\Users\Administrator\Desktop\Hello\bin\x86\Debug\Hello.exe,C:\Users\Administrator\Desktop\Hello\bin\x86\Debug\Hello.dll
精彩评论