Clickonce更新工具

发布于 2024-12-02 07:14:55 字数 178 浏览 1 评论 0原文

我们的软件需要一个更新程序。我想过使用“ClickOnce”,但我知道 ClickOnce 部署程序不允许您在注册表中写入信息。 我们可以在没有部署工具的情况下使用 ClickOnce 并仅使用更新程序工具吗? 因为我想在安装时向注册表写入一些数据,并且我还想使用 ClickOnce 进行更新(因为它很容易使用)。

谢谢

We need an updater in our software. I thought of using "ClickOnce", but I know that the ClickOnce deployer does not allow you to write information in a registry.
Can we use ClickOnce without a deployment tool and use only the updater tool?
Because I want to write some data into the registry during installation time, and I also want to use ClickOnce for updating purposes (because it's easy to use).

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

家住魔仙堡 2024-12-09 07:14:55

您可以手动检查代码更新,然后更新

ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment;
UpdateCheckInfo info = updateCheck.CheckForDetailedUpdate();
//
if (info.UpdateAvailable)
{
  updateCheck.Update();
  MessageBox.Show("The application has been upgraded, and will now restart.");
  Application.Restart();
}

检查此文章

You can manually check for updates from your code and then update

ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment;
UpdateCheckInfo info = updateCheck.CheckForDetailedUpdate();
//
if (info.UpdateAvailable)
{
  updateCheck.Update();
  MessageBox.Show("The application has been upgraded, and will now restart.");
  Application.Restart();
}

Check this article

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