如何从TFS构建过程将参数传递给PowerShell脚本?

时间:2016-03-21 21:33:54

标签: powershell tfs build

我创建了一个小的PowerShell脚本来更改web.config中的连接字符串。

param([string]$webConfigPath, [string]$connectionStringName, [string]$connectionStringValue)

# get the full path of the web config file
$webConfigFile = [IO.Path]::Combine($webConfigPath, 'Web.config')
# load the XML
$webConfig = [xml](cat $webConfigFile)

#change the appropriate config
$webConfig.configuration.connectionStrings.add | foreach {
    if($_.name -eq  $connectionStringName){
        $_.connectionString = $connectionStringValue
    }
}

#save the file
$webConfig.Save($webConfigFile)

我将它添加到我的构建过程中。如何将构建的变量传递给脚本?

(我使用基于新脚本的构建过程,所以我只有一个内置的“Arguments”字段用于参数)

1 个答案:

答案 0 :(得分:6)

您可以将所有参数放在一行中的Arguments文件中:

-webConfigPath "c:\web.config" -connectionStringName "My connection string"