.NET Packer
-
Anyone know of an app like UPX but for .net. Features that would be cool: -Pack the file. (obviously) -Create a native version of the assembly -Download, if required, the .net framework 2 ;) I just don't feel that clickonce is cool for all types of applications...
-
Anyone know of an app like UPX but for .net. Features that would be cool: -Pack the file. (obviously) -Create a native version of the assembly -Download, if required, the .net framework 2 ;) I just don't feel that clickonce is cool for all types of applications...
-
Yeah, I've seen those. Not exactly what I'm looking for. I don't want to obfuscate my code. I want a native executable to check for the framework and download it. I'm sure it's not available though :( Googled it for a while...
-
Yeah, I've seen those. Not exactly what I'm looking for. I don't want to obfuscate my code. I want a native executable to check for the framework and download it. I'm sure it's not available though :( Googled it for a while...
The .NET Linker is not just an obfuscator, it can link the required part of the .NET framework to your executable and then compiles it to native code. And then you can use PECompact to reduce the size of the executable.
-
The .NET Linker is not just an obfuscator, it can link the required part of the .NET framework to your executable and then compiles it to native code. And then you can use PECompact to reduce the size of the executable.
-
Anyone know of an app like UPX but for .net. Features that would be cool: -Pack the file. (obviously) -Create a native version of the assembly -Download, if required, the .net framework 2 ;) I just don't feel that clickonce is cool for all types of applications...