在PowerShell腳本中我需要調用這樣通配符在PowerShell中字符串調用操作
$SpecRunCall = "./packages/SpecRun.Runner.1.2.0/tools/SpecRun.exe"
$MSTestArguments = @('run', 'Default.srprofile', "/baseFolder:.\TestResults", '/log:specrun.log')
if($tag) {
$MSTestArguments += '/filter:@' + $tag
}
& $SpecRunCall $MSTestArguments
一個函數,但我不得不把那裏的SpecRun亞軍的版本,我想放一個通配符的然後找到我擁有的版本(前提是我只有一個版本),但我正在努力爲它找到一個可行的解決方案。
感謝,