I've made changes to my web pages in the development environment, now I need to update the version I have out on the server. Which files do I need to overwrite on the server? Could I just grab the .PDB and .DLL from the BIN directory?
Printable View
I've made changes to my web pages in the development environment, now I need to update the version I have out on the server. Which files do I need to overwrite on the server? Could I just grab the .PDB and .DLL from the BIN directory?
And any ASPX files you changed.
Actually, if you are copying the PDB, it means you compiled as Development and not as RunTime, so upload the code-behind pages too so that when a crash does occur, the outputted LINES OF CODE match those that you actually wrote.
If you dont want it to be a development edition, delete the PDB file. (You can safely do so) and follow the above.