使用Web.Release.config(Web.config转换)

时间:2011-10-06 21:09:19

标签: asp.net-mvc-3 web-config transform configuration-files transformation

在我的Web.config文件中进行以下设置:

<add key="ClientMail" value="ridermansb@bindsolution.com"/>

在我的文件中我是Web.Release.config:

<appSettings>
    <add key="ClientMail"
                xdt:Transform="SetAttributes"
                xdt:Locator="Match(value)"
                value="ridermansb@gmail.com"/>
</appSettings>

如何在发布模式下运行网站时,设置是否正在Web.Release.config中应用?

在这种情况下,我需要更改<appSettings>

中设置的值

1 个答案:

答案 0 :(得分:6)

我认为这仅适用于发布版本。否则,您需要包含一个构建事件,以便在命名构建配置的配置构建中进行合并。如果您对此感兴趣,请告诉我,我会在此处找到我的帖子。

在此处了解网络配置转换:http://weblogs.asp.net/gunnarpeipman/archive/2009/06/16/visual-studio-2010-web-config-transforms.aspx