赞
踩
开发asp.net应用程序的时候,通常debug和release的配置是不同的。多数开发人员都是直接发布web,然后手动修改配置文件web.config。
VS中提供了区分debug和release版本的配置方法,展开web.config,就能看到web.debug.config和web.release.config两个文件。
example:修改数据库链接
web.config中数据库链接字符串:
<connectionStrings>
<add name="debugConnection" connectionString="Server=XXX.XXX.XXX.1;Port=5432;User Id=*;Password=*;Database=*;" />
</connectionStrings>
web.release.config
<connectionStrings>
<add name="ReleaseConnection" connectionString="Server=XXX.XXX.XXX.2;Port=**;User Id=**;Password=**;Database=**;"
xdt:Locator="Match(name)" xdt:Transform="Replace" />
通过xdt:Locator定位需要替换或者删除的位置,xdt:Transform指定操作的方式(Replace or Remove).通过这样简单的设置,就可以实现debug和release使用不同的配置完了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。