I use isolated storage using the IsolatedStorageFile.GetMachineStoreForAssembly () method to store my application settings.
After my application was already deployed, I bought a digital certificate to sign my software. However, the new version with the certificate cannot read the old settings file. Presumably this is due to the fact that the signing has changed the application identifier.
How can I access the old settings that were written from the old version (which was unsigned)? Is it possible to somehow get the repository of the Old old assembly by passing the old identifier?
source share