获取Build配置

时间:2013-09-20 21:27:31

标签: powershell configuration build teamcity

如何在teamcity中通过powershell获取Build配置ID。我必须运行具有不同值的测试,如果bt1比vlue将变为“true”如果bt2而不是“false”这个我的脚本将进行更改

Param ($hiddenfunctionality)
Write-Host "Updating C:\Program Files\\Empower\Web\Web.config"
[System.Xml.XmlDocument] $xd = new-object System.Xml.XmlDocument
 $file = resolve-path("C:\Program Files\\Empower\Web\web\Web.config")
 $xd.load($file)
   $xd.SelectNodes("configuration/appSettings/add[@key='opentext.empower.site.enableHiddenFunctionality']").Item(0).SetAttribute('value', $hiddenfunctionality)
$xd.Save( $file)
Write-Host "Done"

0 个答案:

没有答案