Adding files to WP7 isolated storage from Visual Studio?

后端 未结 3 667
再見小時候
再見小時候 2021-01-06 07:39

I\'m working on an Windows Phone 7 app where I\'m going to show ATM\'s nere your location with bing maps.

I have an xml-file with addresses and gps coordinates. But

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-06 08:13

    The "Mango" SDK ships with the ISETool that can take and restore snapshots of an application's isolated storage to/from a local directory:

    # Copy data from IS to directory
    ISETool.exe ts xd  "C:\TempDirectory\IsolatedStore"
    
    # Copy data from IS to directory
    ISETool.exe rs xd  "C:\TempDirectory\IsolatedStore"
    

    If you don't want to overwrite the entire IS, the tool supports an option (device-folder) for specifying a sub-directory to backup/restore.

提交回复
热议问题