There was an error while loading. Please reload this page.
1 parent 94d87e0 commit 399bcfdCopy full SHA for 399bcfd
1 file changed
.azure-pipelines/ci-build.yml
@@ -107,8 +107,8 @@ extends:
107
$testExecutables = @(Get-ChildItem -Path "$(Build.SourcesDirectory)\test" -Recurse -Filter "*.Tests.exe" | Where-Object {
108
$_.Directory.Parent.Name -eq "$(BuildConfiguration)" -and
109
$_.BaseName -eq $_.Directory.Parent.Parent.Parent.Name -and
110
- # xUnit v3 MTP test apps copy this runner assembly next to the generated executable.
111
- (Test-Path (Join-Path $_.DirectoryName "xunit.v3.mtp-v2.dll"))
+ # xUnit v3 MTP test apps copy the runner assembly next to the generated executable.
+ (Test-Path (Join-Path $_.DirectoryName "xunit.v3.mtp*.dll"))
112
})
113
if ($testExecutables.Count -eq 0) {
114
Write-Error "No xUnit MTP test executable found"
0 commit comments