如何在使用 VS MSI 安装程序安装之前备份 Web.config

发布于 2024-07-11 11:42:54 字数 322 浏览 7 评论 0原文

我正在使用常规 Visual Studio 安装项目来部署 ASP.NET 应用程序。 我需要处理目标目录中存在现有 web.config 的情况。 找到后,需要在安装之前对其进行重命名。 如果没有发生这种情况,新的 web.config 将不会覆盖旧的。

在复制正在安装的文件之前,如何获得自定义操作来重命名旧的 web.config?

到目前为止,我已尝试从 System.Configuration.Install.Installer 派生并覆盖 OnBeforeInstall、Install 和 Commit。 似乎所有这些方法都是在新文件复制到目标目录后发生的。

I am using a regular Visual Studio Setup Project to deploy my ASP.NET application. I need to handle the case of an existing web.config existing in the target directory. When one is found, it needs to be renamed before the install takes place. If this does not happen, the new web.config will not overwrite the old.

How can I get my custom action to rename the old web.config BEFORE the files being installed are copied?

So far I have tried by deriving from System.Configuration.Install.Installer and overriding the OnBeforeInstall, Install and Commit. It seems that all of these methods take place after the new files are copied into the target directory.

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

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

发布评论

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

评论(1

揽月 2024-07-18 11:42:54

在提交事件中执行此操作。 您说您尝试覆盖“提交”,但有两个提交事件; 承诺和承诺。 第一个发生在安装程序属性提交其安装之前,而后者发生在之后。

Do it in the Committing event. You said you tried to override 'Commit' but there is two commit events; Committing and Committed. The first occurs before the installers property commits its install, and the latter occurs after.

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