Which files do I have to deliver when I do an ASP.NET (MVC or not) deploy? I want to know only the absolutely neccesary files. Also, how can I obfuscate some of them to prevent decompiling? I don’t want to use the publishing wizard since it requires having FrontPage extensions installed on the server.
Share
If you compile your ASP.NET application then you can omit CS files (those are already compiled into DLL). Why do you want to obfuscate the files? They will only be on the web server. To obfuscate DLLs you can use the Dotfuscator that is part of Visual Studio. If you google you will find many other (even free) obfuscators (but if you really want a serious obfuscation then you will need to purchase a commercial product).