Update Microsoft.VisualStudio.QualityTools to version with symbols#15646
Update Microsoft.VisualStudio.QualityTools to version with symbols#15646nohwnd merged 1 commit intomicrosoft:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates the test platform externals dependency to a newer preview build that has PDB symbols available on the Microsoft symbol server, enabling on-demand symbol loading for Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll during native/C++ test debugging.
Changes:
- Bumped
TestPlatformExternalsVersionfrom18.0.0-preview-1-10911-061to18.2.0-preview-1-11430-068.
Bump TestPlatformExternalsVersion from 18.0.0-preview-1-10911-061 to 18.2.0-preview-1-11429-120, which is the newest version that has symbols archived on the Microsoft symbol server. This enables debuggers to download PDBs for UnitTestFramework.dll on demand. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2fd5895 to
b1e9299
Compare
| <SystemMemoryVersion>4.5.5</SystemMemoryVersion> | ||
| <SystemReflectionMetadataVersion>8.0.0</SystemReflectionMetadataVersion> | ||
| <TestPlatformExternalsVersion>18.0.0-preview-1-10911-061</TestPlatformExternalsVersion> | ||
| <TestPlatformExternalsVersion>18.2.0-preview-1-11429-120</TestPlatformExternalsVersion> |
There was a problem hiding this comment.
PR description says TestPlatformExternalsVersion is being bumped to 18.2.0-preview-1-11430-068, but the actual value set here is 18.2.0-preview-1-11429-120. Please align the PR description (and/or this value) so reviewers know which build is intended.
Also note this property is used for multiple packages (e.g. Microsoft.Internal.Intellitrace, Microsoft.Internal.Intellitrace.Extensions, and Microsoft.VisualStudio.QualityTools in src/package/Microsoft.TestPlatform/Microsoft.TestPlatform.csproj, plus Microsoft.Internal.TestPlatform.Extensions in the E2E sample), so this change bumps more than just Microsoft.VisualStudio.QualityTools. If that’s intended, consider reflecting the broader scope in the PR title/description.
Bump
TestPlatformExternalsVersionfrom18.0.0-preview-1-10911-061to18.2.0-preview-1-11429-120, which is the newest version that has symbols archived on the Microsoft symbol server.This enables debuggers to download PDBs for
Microsoft.VisualStudio.QualityTools.UnitTestFramework.dllon demand, resolving the missing symbols issue for C++ / native test debugging.