Skip to content

Commit

Permalink
Add GetPackageInstallNotes function
Browse files Browse the repository at this point in the history
  • Loading branch information
chidozieononiwu committed Jan 26, 2021
1 parent 87b557b commit 4970733
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions eng/scripts/Language-Settings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -253,19 +253,7 @@ function GetExistingPackageVersions ($PackageName, $GroupId = $null)
}
catch
{
LogError "Failed to retieve package versions. `n$_"
LogError "Failed to retrieve package versions. `n$_"
return $null
}
}

function SetPackageVersion ($PackageName, $Version, $ServiceName = $null, $ReleaseDate, $BuildType = $null, $GroupName = $null)
{
if ($null -eq $ReleaseDate)
{
$ReleaseDate = Get-Date -Format "yyyy-MM-dd"
}
Push-Location "$EngDir/tools/versioning"
npm install
node ./set-version.js --artifact-name $PackageName --new-version $Version --release-date $ReleaseDate --repo-root $RepoRoot
Pop-Location
}

0 comments on commit 4970733

Please sign in to comment.