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
参数
答案 0 :(得分:0)
在TeamCity的“脚本参数”框中,我
改变了这个
-RootFolderPath '%teamcity.build.checkoutDir%' -VersionString '%AssemblyVersionStringWithCounter%'
到这个
-RootFolderPath %teamcity.build.checkoutDir% -VersionString %AssemblyVersionStringWithCounter%
它有效。主知道。