一键应用程序,并检测新版本的首次启动
是否有一种简单的方法来检测新的单击一次应用程序版本的首次启动? IE:我已经发布了版本1,然后我发布了1.1。在第一次启动版本 1.1 时,我想在启动时执行一次性过程。
谢谢,
马克
Is there a simple way to detect the first launch of a new click-once application version? IE: I have published version 1, and then I publish 1.1. On the first launch of version 1.1 I would like to perform a one time process when it's launching.
Thanks,
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查一下:
来自 msdn 的关于 IsFirstRun:
Check this:
About IsFirstRun from msdn:
最简单的解决方案是将应用程序版本 (
ApplicationDeployment.CurrentDeployment.CurrentVersion
) 存储在配置值中。如果该数字与启动时的配置值不同,那么您就知道它已升级(或降级,但这应该很容易确定)。The simplest solution would be to store the application version (
ApplicationDeployment.CurrentDeployment.CurrentVersion
) in a configuration value. If the number is different from the configuration value when you launch, then you know that it's been upgraded (or downgraded, but that should be easy enough to determine).