使用 clickonce 部署和更新 .net 程序集
想要部署和自动更新我的 .net 程序集。 但发布仅适用于 winform 和 wpf 应用程序。
找到解决方案:创建空的 winforms 应用程序,添加 .net 程序集作为内容,使表单不可见,然后部署此应用程序。这会带来升级的麻烦..
这是最好的解决方案吗?
Want to deploy and auto-update my .net assembly.
But publishing is only for winforms and wpf applications.
Found solution: create empty winforms application, add .net assembly as content, make form invisible, and deploy this app. And here will be troubles with upgrade..
Is it best solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让另一个应用程序调用 ClickOnce 安装来检查更新。因此,无论应用程序使用该程序集,只需在安装 URL 的 URL 上执行 process.start 即可执行更新。
You can have the ClickOnce install invoked by another application in order to check for updates. So whatever application is using the assembly can just do a process.start on the URL to the installation URL and it will do the update.