Is data in isolated storage remain after user installs an update to your app in windows phone 7?
Also are IsolatedStorageSettings preserved after an update?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, IsolatedStorage is only wiped if the user uninstalls the app. Upgrading it leaves previous data intact. Obviously, if the new version of your app wants the data to be in a different format, you’ll have to handle the conversion yourself in code.
Note that as a developer, choosing Rebuild All, or Clean Build -> Build in Visual Studio causes the sideloaded app to be uninstalled and reinstalled from your device (and emulator) the next time it is deployed. This will result in IsolatedStorage being wiped. However, an incremental build does not affect IsolatedStorage.