单击一次安装程序、自定义应用程序启动器和完全信任
我可以使用单击一次部署来下载并启动另一个 exe 文件吗?我已经具有下载和更新应用程序文件的功能,因此我真的希望单击一次安装程序只需下载现有的启动器,为其创建快捷方式,然后启动启动器并使我当前的功能像以前一样工作。
我认为这与谷歌浏览器的做法类似?
Will I be able to download and start another exe-file using my click once deployment? I already have the functionality that downloads and updates my application files, so I would really like for a Click Once installer to just download my existing launcher, create a shortcut for it and then start the launcher and have my current functionality work as before.
I think this is similar to how Google Chrome does it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,ClickOnce 可以部署多个 exe 文件。唯一的规定是必须将一个 exe 指定为“入口点”exe。入口点 exe 必须是 .Net 可执行文件。
关于这种方法需要注意的一件事 - 您不希望用户直接启动您的应用程序。如果用户直接启动应用程序而不是通过入口点 exe,您将失去 ClickOnce 提供的良好的自我更新功能。
Yes, it is possible for ClickOnce to deploy multiple exe files. The only stipulation is that one exe must be designated as the "Entry Point" exe. The entry point exe must be a .Net executable.
One thing to note about this approach - you don't want your users to ever launch your app directly. If users launch the application directly and not through the entry point exe, you will lose the nice self-update features ClickOnce provides.