一键应用程序,并检测新版本的首次启动

发布于 2024-11-29 15:15:25 字数 114 浏览 1 评论 0原文

是否有一种简单的方法来检测新的单击一次应用程序版本的首次启动? 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

很酷不放纵 2024-12-06 15:15:25

检查一下:

 if(System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed && System.Deployment.Application.ApplicationDeployment.IsFirstRun)
 {
    //do something
 }

来自 msdn 的关于 IsFirstRun:

类型:System.Boolean
true 如果此版本的应用程序以前从未在客户端计算机上运行过;否则为假。

Check this:

 if(System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed && System.Deployment.Application.ApplicationDeployment.IsFirstRun)
 {
    //do something
 }

About IsFirstRun from msdn:

Type: System.Boolean
true if this version of the application has never run on the client computer before; otherwise, false.

披肩女神 2024-12-06 15:15:25

最简单的解决方案是将应用程序版本 (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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文