TeamCity - TeamCity上Get-ChildItem的NamedParameterNotFound

时间:2015-11-26 18:12:56

标签: powershell teamcity teamcity-9.0

TeamCity和PowerShell的可怕日子以

结尾
NamedParameterNotFound
Get-ChildItem : A parameter cannot be found that matches parameter name 'File'.
$files = Get-ChildItem -Path $RootFolderPath -Filter $CodeFilename -File -Recurse

违规行(上方,下方)位于由TeamCity运行的PS1中。

脚本在我的本地开发机器上运行得很漂亮,TC服务器上的PS版本显然是4.0,我可以在TC服务器本身的PS命令窗口中看到-File param。

-File

Get-ChildItem参数如何丢失constexpr参数

1 个答案:

答案 0 :(得分:0)

在TeamCity的“脚本参数”框中,我

改变了这个

-RootFolderPath '%teamcity.build.checkoutDir%' -VersionString '%AssemblyVersionStringWithCounter%'

到这个

-RootFolderPath %teamcity.build.checkoutDir% -VersionString %AssemblyVersionStringWithCounter%

它有效。主知道。