1

我在 Azure Devops Server 2020 的管道中的作业中有一个 Powershell 任务。这是 powershell 的一部分:

      $xml = [xml](Get-Content $configPath)
   
       Write-Output "Iterating over appSettings"
       ForEach($add in $xml.configuration.appSettings.add)
       {
           #Write-Output "Processing AppSetting key $($add.key)"
           
           $SecretVarKey = "MAPPED_"+$add.key
           Write-Output $SecretVarKey
   
           $matchingEnvVar = [Environment]::GetEnvironmentVariable($SecretVarKey)
   
           if($matchingEnvVar)
           {
                   Write-Output "Found matching environment variable for key: $($add.key)"
                   Write-Output "Replacing value $($add.value)  with $matchingEnvVar"
   
                   $add.value = $matchingEnvVar
           }
       }

这在任务中运行良好——我的构建正在做我想要的。但是当我查看 YAML 时,我会看到这样的评论:

#Your build pipeline references an undefined variable named ‘$add.key’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972

同样,这不会干扰脚本的执行。

但是,现在我想将此任务提取到任务组中。当我这样做时,无害的错误检测现在是一个问题,因为它坚持认为这些是新参数:

任务组对话框的屏幕截图

我可以做一些魔术来更改我的 Powershell 脚本,因此它们不被认为是参数吗?

4

1 回答 1

3

您的构建管道引用了一个名为“$add.key”的未定义变量</p>

这是由下面的行触发的:

Write-Output "Found matching environment variable for key: $($add.key)"

Azure DevOps将$($add.key)其解析为宏语法。您可以通过使用字符串格式来避免这种情况:

'Found matching environment variable for key: {0}' -f $add.key

顺便说一句,在大多数情况下,您不需要使用 Write-Output - 它很慢而且是多余的。有关详细信息,请参阅此博客文章:让我们杀死 Write-Output

于 2021-07-24T16:57:53.107 回答