Web.Config调试发布

Web.Config调试发布,第1张

Web.Config调试/发布

作为Visual Studio
2010一部分的web.config转换使用XSLT来将当前的web.config文件“转换”为其.Debug或.Release版本。

在.Debug / .Release文件中,您需要在连接字符串字段中添加以下参数:

xdt:Transform="SetAttributes" xdt:Locator="Match(name)"

这将导致每个连接字符串行找到匹配的名称并相应地更新属性。

注意:您不必担心更新转换文件中的providerName参数,因为它们不会更改。

这是我的一个应用程序中的一个示例。这是web.config文件部分:

<connectionStrings>      <add name="EAF" connectionString="Data Source=NTSQLTS2K5TST;Initial Catalog=HR;User ID=EAFApp;Password=XXXX" providerName="System.Data.SqlClient" /></connectionString>

这是执行适当转换的web.config.release部分:

<connectionStrings>      <add name="EAF" connectionString="Data Source=NTSQLPS2K5TST;Initial Catalog=HR;User ID=EAFApp;Password=YYYY" xdt:Transform="SetAttributes" xdt:Locator="Match(name)" /></connectionStrings>

补充说明:转换仅在发布站点时发生,而不是仅使用F5或CTRL + F5运行时发生。
如果需要在本地对给定的配置运行更新,则必须为此手动更改Web.config文件。

有关更多详细信息,请参见MSDN文档。

https://msdn.microsoft.com/zh-
CN/library/dd465326(VS.100).aspx



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5150315.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存