I started working on a universal app.
So, I created a new Class library (Portable for Universal Apps). However, as soon as I tried to use the IsolatedStorageFile
class, it said it was not there.
And indeed, searching for it in Object Explorer did not reveal such a class in the references for this project, which are the default for such a project: .NET (.NETPortable, v4.6) and Windows (Portable,Version=7.0). Targeting is set as Windows 8.1 and Windows Phone 8.1.
According to the IsolatedStorageFile page at MSDN it should be supported for Windows Phone 8.1, Windows Phone 8, Windows 8.1.
Actually, I can't see it in the references for the Windows 8.1 and Windows Phone 8.1 app that were automatically created for the universal solution, either.
Any idea how to use isolated storage in a universal app and what happened to IsolatedStorageFile
?