From 6a034616f7c86934eeaf640d81e2038f55c1938d Mon Sep 17 00:00:00 2001 From: Cijo Thomas Date: Tue, 9 Mar 2021 14:17:06 -0800 Subject: [PATCH 1/2] Update test package versions --- build/Common.nonprod.props | 2 +- build/Common.props | 2 +- 2 files changed, 2 insertions(+), 2 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) From 92d0be2ce57df28af3918758c656d84a415e07dc Mon Sep 17 00:00:00 2001 From: Cijo Thomas Date: Tue, 9 Mar 2021 14:21:07 -0800 Subject: [PATCH 2/2] fix script path --- build/process-codecoverage.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }