Reputation: 10834
I'm saving some settings to the local storage
ApplicationDataContainer localSettings = ApplicationData.Current.LocalSettings;
but every time I relaunch the app and try to read the saved values they are gone. How can I make VS remember the settings I save in local storage?
Upvotes: 0
Views: 730
Reputation: 2788
2 things
I am not sure if this applies Win Runtime, but that is usually the issue with windows phone storage.
Hope this helps
Upvotes: 0
Reputation: 23764
Do you have the following option selected on your Debug tab for your Windows Store app project? If so.. don't :)
Upvotes: 1