从自动更新侧载UWP应用程序中排除文件
我在我的 UWP 应用程序中使用离线矢量底图(大小:1.35GB)。
目前,在“开发”阶段,我使用文件选择器从磁盘加载地图,但在应用程序的更高版本中,我想将地图包含在应用程序解决方案中,以在应用程序启动时预加载地图。
由于底图的内容仅每 4-6 个月更新一次,我想知道是否可以将底图排除在自动更新之外?
喜欢:
AppVersion | 自动更新(旁载) | AppSize |
---|---|---|
1.0.0.1 | 包括地图 | ~1.5GB |
1.0.0.2 | - | ~150MB |
1.0.0.3 | - | ~150MB |
1.0.0.4 | - | ~150MB |
1.0.0.5 | 更新地图 | ~1.5GB |
感谢您的宝贵时间!
亲切的问候
Iam using an offline Vector-Basemap (Size: 1.35GB) in my UWP-Application.
Currently, in 'developing'-Stage, iam using a filepicker to load the map from disk, but in a later version of the app, i want to include the map in the app solution, to preload the map at app-start.
Because of the fact, that the content of the basemap is only updating every 4-6 months, i want to know if it is possible to exclude the basemap from auto update?
Like:
AppVersion | Auto-Update (Sideload) | AppSize |
---|---|---|
1.0.0.1 | include map | ~1.5GB |
1.0.0.2 | - | ~150MB |
1.0.0.3 | - | ~150MB |
1.0.0.4 | - | ~150MB |
1.0.0.5 | update map | ~1.5GB |
Thanks for your time!!
Kind regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不可能这样做。实施您想要的类似方法是,您可以手动控制基础图的更新。您可以从Sideload包装中排除基础图。然后将基础图放置在其他地方,然后在需要更新本地基地时下载基础图。
No, it is not possible to do that. A similar way to implement what you want might be that you could manually control the update of the basemap. You could exclude the basemap from your sideload package. Then put the basemap somewhere else and download the basemap when the local basemap needs to be updated.