We tried this with both VS 2022 17.8.3, 17.9.0 and 17.9.1 which is currently the latest.
Symptom: When running XUnit test and hitting a breakpoint and we try to inspect properties of an object it just hangs for a while with a message "Busy" then in the Watch window if we expand the object it just shows three ellipsis. This happens only if the object has at least one property with a Type defined in a NuGet package.
XUnit test with breakpoint, goint to inspect variable s:
Watch window shows nothing when expanding variable, just "...":
"Workaround": A "workaround" is to instantiate an object of a Type from the NuGet package before inspecting.
It now works to inspect the variable "s".
It is pretty obvious that the problem occurs because the dll from the NuGet is not yet loaded when we inspect the object. Is there any setting in VS we might have missed, or could it be something in our codebase?


