From 1602932cf384339ab422b49d1308add32f0b972c Mon Sep 17 00:00:00 2001 From: Cijo Thomas Date: Tue, 9 Mar 2021 14:35:03 -0800 Subject: [PATCH] Update test package versions (#1888) * Update test package versions --- build/Common.nonprod.props | 2 +- build/Common.props | 2 +- build/process-codecoverage.ps1 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Common.nonprod.props b/build/Common.nonprod.props index 7bd7554f769..58ff63eb96d 100644 --- a/build/Common.nonprod.props +++ b/build/Common.nonprod.props @@ -36,7 +36,7 @@ [5.0.0,6.0) [5.0.0,6.0) [5.0.0,6.0) - [16.9.0-preview-20201020-06] + [16.9.1] [4.14.5,5.0) [6.1.0,7.0) [2.1.58,3.0) diff --git a/build/Common.props b/build/Common.props index 39fc029d5fc..7e84970a075 100644 --- a/build/Common.props +++ b/build/Common.props @@ -30,7 +30,7 @@ [2.1.1,6.0) [1.0.7,2.0) [3.3.1] - [16.9.0-preview-20201020-06] + [16.9.1] [2.1.0,6.0) [2.1.0,6.0) [2.1.0,6.0) diff --git a/build/process-codecoverage.ps1 b/build/process-codecoverage.ps1 index 5355ecf6e5e..10cac6035be 100644 --- a/build/process-codecoverage.ps1 +++ b/build/process-codecoverage.ps1 @@ -2,7 +2,7 @@ Write-Host $env:USERPROFILE foreach ($file in $files) { - $command = $env:USERPROFILE+ '\.nuget\packages\microsoft.codecoverage\16.9.0-preview-20201020-06\build\netstandard1.0\CodeCoverage\CodeCoverage.exe analyze /output:' + $file.DirectoryName + '\' + $file.Name + '.xml '+ $file.FullName + $command = $env:USERPROFILE+ '\.nuget\packages\microsoft.codecoverage\16.9.1\build\netstandard1.0\CodeCoverage\CodeCoverage.exe analyze /output:' + $file.DirectoryName + '\' + $file.Name + '.xml '+ $file.FullName Write-Host $command Invoke-Expression $command }