Skip to content

Instantly share code, notes, and snippets.

@i4004
Last active October 7, 2020 15:00
Show Gist options
  • Save i4004/66ea63dd6dd5abb158b179eb623ae4fb to your computer and use it in GitHub Desktop.
Save i4004/66ea63dd6dd5abb158b179eb623ae4fb to your computer and use it in GitHub Desktop.
Publish NuGet symbols packages
$packagesPath = "D:\\Downloads\\*.snupkg"
nuget push $packagesPath -Source https://api.nuget.org/v3/index.json
if ($LastExitCode -ne 0)
{
exit $LastExitCode
}
Remove-Item $packagesPath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment