Sync eng/common directory with azure-sdk-tools repository for Tools PR 973 (#618)
This commit is contained in:
parent
139b07634f
commit
aabb531510
@ -73,16 +73,13 @@ function GetAdjustedReadmeContent($pkgInfo, $lang){
|
||||
$foundTitle = ""
|
||||
|
||||
# only replace the version if the formatted header can be found
|
||||
$headerContentMatches = (Select-String -InputObject $pkgInfo.ReadmeContent -Pattern 'Azure .+? (client|plugin|shared) library for (JavaScript|Java|Python|\.NET|C)')
|
||||
if ($headerContentMatches) {
|
||||
$foundTitle = $headerContentMatches.Matches[0]
|
||||
$fileContent = $pkgInfo.ReadmeContent -replace $foundTitle, "$foundTitle - Version $($pkgInfo.PackageVersion) `n"
|
||||
|
||||
# Replace github master link with release tag.
|
||||
$ReplacementPattern = "`${1}$($pkgInfo.Tag)"
|
||||
$fileContent = $fileContent -replace $releaseReplaceRegex, $ReplacementPattern
|
||||
}
|
||||
|
||||
$titleRegex = "(\# Azure .+? (?:client|plugin|shared) library for (?:JavaScript|Java|Python|\.NET|C))"
|
||||
$fileContent = $pkgInfo.ReadmeContent -replace $titleRegex, "`${1} - Version $($pkgInfo.PackageVersion) `n"
|
||||
|
||||
# Replace github master link with release tag.
|
||||
$ReplacementPattern = "`${1}$($pkgInfo.Tag)"
|
||||
$fileContent = $fileContent -replace $releaseReplaceRegex, $ReplacementPattern
|
||||
|
||||
$header = "---`ntitle: $foundTitle`nkeywords: Azure, $lang, SDK, API, $($pkgInfo.PackageId), $service`nauthor: maggiepint`nms.author: magpint`nms.date: $date`nms.topic: article`nms.prod: azure`nms.technology: azure`nms.devlang: $lang`nms.service: $service`n---`n"
|
||||
|
||||
if ($fileContent) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user