Reputation: 73
I want to know, if possible, how to roolback an application created using visual studio. Imagining that I have released version 1.0.0 above, yesterday I made some changes to the .cs file and I released a new version 1.0.1. Now I would like to restore the version 1.0.0 and .cs files of that version in the meantime they have been overwritten by the updated. The only thing I see refer to version 1.0.0 are the .application, .manifest, and .deploy files within the Application Files folder but they can not trace the source files (.cs). Is there a solution to this problem? Thanks in advance and sorry for the imperfect English
Upvotes: 0
Views: 168
Reputation: 1
You should use Source Version Control tools like Git or SVN to keep track of your project history.
Upvotes: 4