ClickOnce:更新自定义文件夹
我正在进行 ClickOnce 安装设置。我必须在系统文件夹中保留一个自定义文件夹,其中包含应用程序在运行时使用的某些 DLL。因此,我为这些 DLL 制作了一个单独的安装程序,并创建了一个自定义引导捆绑程序,将其用作 ClickOnce 安装程序的先决条件。
我需要的是,当应用程序使用 Clickonce 更新自身时,它还应该更新系统文件夹中的自定义文件夹。
有什么方法可以完成此操作,即告诉 clickonce 也更新该自定义文件夹???
I am making an ClickOnce Installation setup. I have to keep a custom folder in system folder, that has certain DLLs that are used by application at run time. So, I made a separate installer for these DLLs and created a Custom Boot Strapper that I use as a pre-requisite in ClickOnce installer.
What I need is, when Application updates itself using Clickonce, it should also update that custom folder in System folder.
Is there any way to accomplish this, i.e to tell clickonce to update that custom folder also ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。ClickOnce 无法更新您的用户配置文件之外的文件。
您可以让 ClickOnce 下载最新版本的系统 dll,但在应用程序启动后,必须使用您自己的代码将它们复制到系统目录,前提是这些 dll 尚未使用且无法被覆盖。
No. ClickOnce can't update files outside of your user profile.
You can have ClickOnce download the latest version of your system dlls, but copying them to the system directory would have to be done with your own code after your application starts, assuming the dlls aren't already in use and can't be overwritten.