I'm using dotnet 8. I want to debug packages from nuget,but I can't step in(F11) the source code.
I tried to add following configuration to launch.json,But it's not worked
"justMyCode": false,
"sourceLinkOptions": {
"*": {
"enabled": true
}
},
I can't see any details here neither
Finally, It's resolved by myside. here is the code
"suppressJITOptimizations": true,
"justMyCode": false,
"symbolOptions": {
"searchPaths": [],
"searchMicrosoftSymbolServer": true,
"searchNuGetOrgSymbolServer": true
},