We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MSBuild.exe, NuGet.exe
All
No response
None
The PackageSpecWriter class calls the .Any() method on some IList<T> objects which causes allocations. These should be avoided on hot paths.
PackageSpecWriter
.Any()
IList<T>
The text was updated successfully, but these errors were encountered:
Fixed by #13213
Sorry, something went wrong.
jeffkl
Successfully merging a pull request may close this issue.
NuGet Product Used
MSBuild.exe, NuGet.exe
Product Version
All
Worked before?
No response
Impact
None
Repro Steps & Context
The
PackageSpecWriter
class calls the.Any()
method on someIList<T>
objects which causes allocations. These should be avoided on hot paths.Verbose Logs
No response
The text was updated successfully, but these errors were encountered: