Updated ApiView tool to version 0.13.0 (#5498)

This commit is contained in:
Larry Osterman 2024-04-09 10:02:14 -07:00 committed by GitHub
parent abeb4e797b
commit 1c304d60d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -107,7 +107,7 @@ jobs:
vstsFeed: 'internal/AzureSDKForCpp'
vstsFeedPackage: 'parseazuresdkcpp'
downloadDirectory: '$(System.DefaultWorkingDirectory)/parser'
vstsPackageVersion: 0.12.0
vstsPackageVersion: 0.13.0
condition: >-
and(
succeeded(),

View File

@ -40,6 +40,11 @@ foreach ($artifact in $ArtifactList)
Write-Host "Contents in $($parentPath)"
Get-ChildItem -Path $parentPath -Recurse
& $ParserPath -o $OutPath/$ArtifactName/$ArtifactName.json $SourcePath
if ($LASTEXITCODE -ne 0)
{
Write-Host "Failed to generate API review file for $($ArtifactName)"
exit 1
}
}
$createReviewScript = (Join-Path $PSScriptRoot .. common scripts Create-APIReview.ps1)