Reputation: 4673
I’m storing data that my app uses in isolated storage which is working fine. However, I’m not sure what will happen to the data when I release an update to my app – is the isolated storage data cleared? or will I still be able to access the data?
Upvotes: 3
Views: 539
Reputation: 14882
Your isolated storage is untouched via an app update.
It's your app's responsibility to manage any updates needed to keep app version and data in sync.
Upvotes: 4