I'm using Isolated Storage via the IsolatedStorageFile.GetMachineStoreForAssembly() method to store my application settings.
After my application was already deployed, I bought a digital certificate to sign my software with. However, the new version with the certificate cannot read the old settings file. Presumbly this is because the signing changed the application identity.
How can I access the old settings, which were written from the old version (which was unsigned)? Is it possible to somehow get the Machine store of the old assembly by passing in the old identity?