Merge remote-tracking branch 'origin/main' into microbuild

This commit is contained in:
Andrew Arnott 2024-01-30 15:09:53 -07:00
Родитель 4351009e22 ebb0607dd9
Коммит 0d16c29d9a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F33A420C60ED9C6F
2 изменённых файлов: 6 добавлений и 7 удалений

Просмотреть файл

@ -9,7 +9,7 @@
]
},
"dotnet-coverage": {
"version": "17.9.6",
"version": "17.10.1",
"commands": [
"dotnet-coverage"
]

Просмотреть файл

@ -107,8 +107,7 @@ try {
$HeaderColor = 'Green'
$RestoreArguments = @()
if ($Interactive)
{
if ($Interactive) {
$RestoreArguments += '--interactive'
}
@ -121,10 +120,10 @@ try {
}
if (!$NoToolRestore -and $PSCmdlet.ShouldProcess("dotnet tool", "restore")) {
dotnet tool restore @RestoreArguments
if ($lastexitcode -ne 0) {
throw "Failure while restoring dotnet CLI tools."
}
dotnet tool restore @RestoreArguments
if ($lastexitcode -ne 0) {
throw "Failure while restoring dotnet CLI tools."
}
}
$InstallNuGetPkgScriptPath = "$PSScriptRoot\azure-pipelines\Install-NuGetPackage.ps1"