1

Is there a way when I am testing my own app (sideloaded to my phone), that I can treat my version as an update to my original application.

Lets say I'm going from 1.5 to 1.6 of my app. I want to use the exact same IsololatedStorage data that is in 1.5 with my new version (for testing). Is there a way to do this? In the past it just creates a new instance of my application and I would have 1.5 and 1.6 on my phone.

Anyway of doing this?

Lin-Art
  • 4,933
  • 2
  • 26
  • 31
webdad3
  • 8,893
  • 30
  • 121
  • 223

1 Answers1

1

How are you sideloading for testing? Deploying via VS/Blend or using the CoreCon API?

If using VS/Blend - you'll have to manipulate the contents of IsolatedStorage in code/debug.

If using CoreCon you can just upload the old version of the files to IsolatedStorage.

Matt Lacey
  • 65,560
  • 11
  • 91
  • 143
  • Man that is one heck of a tutorial... I guess the quick and easy answer is no... However the CoreCon API appeared to have a way (with some extra work). Thanks for sharing that. I'll check that out. – webdad3 Dec 23 '10 at 15:33