How to deploy updates in asp.net mvc application
Hi I have developed the asp.net mvc 2 application. I have deployed it successfully on XP machine that having the IIS 5.1 . it is running fine. but I have 开发者_如何学Pythonupdated some changes in my application on development machine . I want to deploy only these updates over the deployment machine that is XP machine. means only want to update existing deployed application . what procedure I have to be follow ? which files I need to be changes or replaces ?
It depends on what you are updating. If you change only the views, css, javascript, you could xcopy
only the modified files but if you change the source code you need to recompile the application and redeploy it.
精彩评论