Skip to content

Commit 72422d7

Browse files
committed
add some diagnostics to LanguageSettings
1 parent a9afc6c commit 72422d7

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

eng/scripts/Language-Settings.ps1

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
$Language = "android"
2+
$LanguageDisplayName = "Android"
3+
$PackageRepository = "Maven"
24
$packagePattern = "*.pom"
5+
36
$CampaignTag = Resolve-Path (Join-Path -Path $PSScriptRoot -ChildPath "../repo-docs/ga_tag.html")
7+
$GithubUri = "https://github.com/Azure/azure-sdk-for-android"
8+
$PackageRepositoryUri = "https://repo1.maven.org/maven2"
9+
410
function Get-AllPackageInfoFromRepo ($serviceDirectory)
511
{
612
$allPackageProps = @()
@@ -47,6 +53,7 @@ function SetPackageVersion ($PackageName, $Version, $ReleaseDate, $ReplaceLatest
4753
# Parse out package publishing information given a maven POM file
4854
function Get-android-PackageInfoFromPackageFile ($pkg, $workingDirectory)
4955
{
56+
Write-Host "Get-android-PackageInfoFromPackageFile, pkg=$pkg"
5057
[xml]$contentXML = Get-Content $pkg
5158

5259
$pkgId = $contentXML.project.artifactId
@@ -71,6 +78,14 @@ function Get-android-PackageInfoFromPackageFile ($pkg, $workingDirectory)
7178
$readmeContent = Get-Content -Raw $readmeContentLoc
7279
}
7380

81+
Write-Host "Get-android-PackageInfoFromPackageFile, pkgId=$pkgId"
82+
Write-Host "Get-android-PackageInfoFromPackageFile, groupId=$groupId"
83+
Write-Host "Get-android-PackageInfoFromPackageFile, pkgVersion=$pkgVersion"
84+
Write-Host "Get-android-PackageInfoFromPackageFile, releaseTag=$($pkgId)_$($pkgVersion)"
85+
Write-Host "Get-android-PackageInfoFromPackageFile, releaseNotes=$releaseNotes"
86+
Write-Host "Get-android-PackageInfoFromPackageFile, readmeContent=$readmeContent"
87+
Write-Host "Get-android-PackageInfoFromPackageFile, docsReadMeName=$docsReadMeName"
88+
7489
return New-Object PSObject -Property @{
7590
PackageId = $pkgId
7691
GroupId = $groupId
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.0-beta.7
1+
version=1.0.0-beta.8

0 commit comments

Comments
 (0)