From 601ea9d5c9fe92d650201d54fa6ca3710682c9dd Mon Sep 17 00:00:00 2001 From: Betim Beja <11160171+BetimBeja@users.noreply.github.com> Date: Sat, 28 Nov 2020 18:56:32 +0100 Subject: [PATCH] Updated pipeline vm image --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 78c96ee..f69fe58 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,5 +1,5 @@ pool: - vmImage: 'vs2017-win2016' + vmImage: 'windows-2019' steps: - task: NuGetToolInstaller@0 @@ -31,7 +31,7 @@ steps: - powershell: | $coverageFilePath = (Resolve-Path -path "$($Env:CoveragePath)\TestResults\*\*.coverage").Path - Invoke-Expression '& "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Team Tools\Dynamic Code Coverage Tools\CodeCoverage.exe" analyze /output:coverage.coveragexml "$($coverageFilePath)"' + Invoke-Expression '& "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Team Tools\Dynamic Code Coverage Tools\CodeCoverage.exe" analyze /output:coverage.coveragexml "$($coverageFilePath)"' Invoke-Expression '& dotnet tool install coveralls.net --version 1.0.0 --tool-path coveralls.net' $commitAuthor = git log --format=%an HEAD~1..HEAD $commitAuthorEmail = git log --format=%ae HEAD~1..HEAD