diff --git a/build/Publish.targets b/build/Publish.targets index 13c7e3c7eb..a070080797 100644 --- a/build/Publish.targets +++ b/build/Publish.targets @@ -60,6 +60,7 @@ aspnetcore/Runtime/$(PackageVersion)/ aspnetcore/npm/ + aspnetcore/jar/ aspnetcore/Runtime/$(SharedFxCliBlobChannel)/ runtime-site-extension-internal-$(PackageVersion).zip aspnetcore-runtime-$(PackageVersion) @@ -155,6 +156,15 @@ ArtifactPath="$(DependencyPackagesDir)%(ArtifactInfo.PackageId).%(ArtifactInfo.Version).symbols.nupkg" Condition="'%(ArtifactInfo.ArtifactType)' == 'NuGetSymbolsPackage'" /> + + $(JarBlobBasePath)%(ArtifactInfo.FileName)%(ArtifactInfo.Extension) + Type=JavaJar + + + + $(JarBlobBasePath)%(ArtifactInfo.FileName)%(ArtifactInfo.Extension) + + $(NpmBlobBasePath)%(ArtifactInfo.PackageId)/%(ArtifactInfo.FileName)%(ArtifactInfo.Extension) Type=NpmPackage diff --git a/scripts/GenerateTags.ps1 b/scripts/GenerateTags.ps1 index 5fc2ed9ee7..a8c264139a 100755 --- a/scripts/GenerateTags.ps1 +++ b/scripts/GenerateTags.ps1 @@ -69,6 +69,7 @@ function Get-PackageVersion([string]$repoRoot) { } $packageVersion = $output | where-object { $_ -like '*PackageVersion=*' } | select-object -first 1 $packageVersion = $packageVersion -replace 'PackageVersion=', '' + $packageVersion = $packageVersion -replace '-final', '' if ($packageVersion) { $packageVersion = $packageVersion.Trim() } if (-not $packageVersion) { throw "Could not determine final package version for $repoRoot"