Web 应用程序的设置项目
我有一个安装项目,正在为 Web Access 的扩展创建安装(例如 tfs Web Access 的 Outlook Web Access)。
问题是安装是替换原来的web.config,而不是添加/更改相应的属性或节点。
有人知道我应该如何创建这个安装项目吗?
塞巴斯蒂安
I have a Setup Project that is creating an installation for an extension of a Web Access (like outlook web access of tfs web access).
The problem is the installation is replacing the original web.config, instead adding/changing corresponding attributes or nodes.
Someone knows how I should create this Setup Project?
Sebastian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有自动的方法可以做到这一点。一种解决方案是将安装项目中的 web.config 重命名为“web.config.update”之类的名称。
创建一个控制台应用程序,读取 web.config 和 web.config.update 并将它们合并到新的 web.config。将此应用程序添加到安装项目并使其在安装完成后运行。
但如果您使用 VS2010,那么 @Oded 的解决方案是更好的解决方案。在项目中保留环境配置文件的副本,并让构建任务为您转换它们。
There is no automatic way of doing this. One solution is to rename the web.config in your setup project to something like "web.config.update".
Create a console application which reads in web.config and web.config.update and merges them to a new web.config. Add this application to the setup project and make it run after the install is complete.
But if you are using VS2010 then @Oded´s solution is a better one. Keep a copy of your environments config files inside the project and have the build task transform them for you.
Visual Studio 2010 引入了 < code>web.config 转换 有助于解决此类部署问题。
有关其工作原理,请参阅此操作视频。
但是,这仍然会用您为环境指定的值替换 web.config。
Visual studio 2010 introduced
web.config
transforms that help with such deployment problems.See this howto video on how it works.
This will still replace the web.config, however, with the values you specify for the environment.