-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix servicehub symbol package name #75525
Conversation
@@ -69,6 +69,11 @@ function Publish-Nuget($publishData, [string]$packageDir) { | |||
throw "$nupkg does not exist" | |||
} | |||
|
|||
if ($nupkg.EndsWith(".symbols.nupkg")) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add a comment on how they are published if they aren't published here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tbh I'm still feeling perplexed on how our symbol publishing works. From the log, it seems we generate a bunch of {packageId}.Symbols.{version}.nupkg
packages, then use *.symbols.nupkg
to try to find them and failed to find any, therefore we copy those {packageId}.Symbols.{version}.nupkg
to {packageId}*.Symbols.{version}.symbols.nupkg
and use them instead... @tmat and I decided to at least have the name of these two servicehub packages right and figure out what to do for others later.
hopefully this would fix the build. At least validation run is fixed