diff options
Diffstat (limited to 'Build-SampleSet.ps1')
| -rw-r--r-- | Build-SampleSet.ps1 | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Build-SampleSet.ps1 b/Build-SampleSet.ps1 index b1489e20..535ac6db 100644 --- a/Build-SampleSet.ps1 +++ b/Build-SampleSet.ps1 @@ -115,12 +115,14 @@ Import-Csv 'exclusions.csv' | ForEach-Object { } $jresult = @{ - SolutionsBuilt = 0 - SolutionsExcluded = 0 - SolutionsFailed = 0 - Results = @() - FailSet = @() - lock = [System.Threading.Mutex]::new($false) + SolutionsBuilt = 0 + SolutionsSucceeded = 0 + SolutionsExcluded = 0 + SolutionsUnsupported = 0 + SolutionsFailed = 0 + Results = @() + FailSet = @() + lock = [System.Threading.Mutex]::new($false) } $SolutionsTotal = $sampleSet.Count * $Configurations.Count * $Platforms.Count |
