I get an error when trying to access isolated memory when starting the Silverlight unit test project in VS2010.
The Silverlight_Binary_Serialization_Tests.SerializationTests.SerializeBytesTest verification method throws an exception: System.IO.IsolatedStorage.IsolatedStorageException: The identifier of the calling application cannot be determined.
Here is the line where it does not work:
private readonly IsolatedStorageFile _store = IsolatedStorageFile.GetUserStoreForApplication ();
source
share