使用 msdeploy paramters.xml 在 web.config 中添加新的连接字符串
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于目前 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.