使用 msdeploy paramters.xml 在 web.config 中添加新的连接字符串

发布于 2024-12-23 04:49:30 字数 623 浏览 2 评论 0原文

我正在使用 msdeploy 在远程计算机上同步 IIS。到目前为止,我需要用所需的连接字符串替换默认连接字符串,并且我能够使用parameter.xml,

"C:\program files\IIS\Microsoft Web Deploy V2\msdeploy.exe" -verb:sync -source:iisApp="$(BuildLocation)" -dest:iisApp="MySite",computerName=ServerName -setParamFile="MYSiteParameters.xml"

<parameter name = "Name" defaultValue="ConnectionString">
    <parameterEntry kind="XmlFile" scope="Web\.config$" match="/configuration/connectionStrings/add[@name='Name']/@connectionString" />
</parameter>

这成功地替换了现有的连接字符串。

现在我想添加另一个连接字符串,一个源文件中不可用的额外连接字符串。这可以通过 msdeploy 实现吗?

谢谢。

I am using msdeploy to sync IIS on remote machine. Till now I needed to replace default connection string with required one and I was able to use parameter.xml

"C:\program files\IIS\Microsoft Web Deploy V2\msdeploy.exe" -verb:sync -source:iisApp="$(BuildLocation)" -dest:iisApp="MySite",computerName=ServerName -setParamFile="MYSiteParameters.xml"

<parameter name = "Name" defaultValue="ConnectionString">
    <parameterEntry kind="XmlFile" scope="Web\.config$" match="/configuration/connectionStrings/add[@name='Name']/@connectionString" />
</parameter>

This was successfully replacing the existing connection string.

Now I want to add another connection string, an extra one which is not available in source file. Is this possible with msdeploy?

Thanks.

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

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

发布评论

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

评论(1

秋意浓 2024-12-30 04:49:30

对于目前 MSDeploy 中存在的参数化来说,这是不可能的。您需要在 web.config 中创建一个占位符连接字符串,以便可以参数化它的值。

This is not possible with the parameterization which exists in MSDeploy today. You will need to create a placeholder connection string inside of your web.config so that you can parameterize the value for it.

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