From 46907830e282ae3cc3b5890a27ce69ac4e8feeb7 Mon Sep 17 00:00:00 2001 From: Eddy Nakamura Date: Thu, 20 Aug 2020 13:26:51 -0300 Subject: [PATCH] Updating VSTest nuget (#1074) * Updating VSTest nuget * updating to stable version * updating nuget Co-authored-by: Cijo Thomas Co-authored-by: Mikel Blanchard --- 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 fa685ba152f..7bb1c87bda5 100644 --- a/build/Common.nonprod.props +++ b/build/Common.nonprod.props @@ -24,7 +24,7 @@ --> [0.12.1,0.13) [2.3.1,3.0) - [16.6.1,17.0) + [16.7.1,17.0) [4.14.5,5.0) [2.4.3,3.0) [2.4.1,3.0) diff --git a/build/Common.props b/build/Common.props index 207aadd5024..2debee406ae 100644 --- a/build/Common.props +++ b/build/Common.props @@ -29,7 +29,7 @@ [2.1.1,5.0) [1.0.7,2.0) [3.3.0-beta2.final] - [16.6.1] + [16.7.1] [2.1.0,5.0) [1.0.0,2.0) [1.0.0,2.0) diff --git a/build/process-codecoverage.ps1 b/build/process-codecoverage.ps1 index 89131dbdaf0..3d29cbc98eb 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.6.1\build\netstandard1.0\CodeCoverage\CodeCoverage.exe analyze /output:' + $file.DirectoryName + '\' + $file.Name + '.xml '+ $file.FullName + $command = $env:USERPROFILE+ '\.nuget\packages\microsoft.codecoverage\16.7.1\build\netstandard1.0\CodeCoverage\CodeCoverage.exe analyze /output:' + $file.DirectoryName + '\' + $file.Name + '.xml '+ $file.FullName Write-Host $command Invoke-Expression $command }