We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a742c81 commit d99f940Copy full SHA for d99f940
eng/common/scripts/Helpers/ApiView-Helpers.ps1
@@ -229,3 +229,12 @@ function Set-ApiViewCommentForPR {
229
exit 1
230
}
231
232
+
233
+function Save-PackageProperties ($repoRoot, $serviceNames, $outputDirectory) {
234
+ $scriptPath = Join-Path $repoRoot "eng" "common" "scripts" "Save-Package-Properties.ps1"
235
+ $serviceDirectories = $serviceNames -split ","
236
237
+ foreach ($serviceDirectory in $serviceDirectories) {
238
+ & $scriptPath -ServiceDirectory $serviceDirectory.Trim() -OutDirectory $outputDirectory
239
+ }
240
+}
0 commit comments