-
Notifications
You must be signed in to change notification settings - Fork 676
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
Question: When debugging how can I step into an external referenced class library? #1467
Comments
@bernardbr I am assuming the dll in the nuget package is release-compiled (optimized) correct? If so, what you want to do is set 'justMyCode` in your launch.json file to false. There are some more instructions for this in our documentation. Someday you will also be able to use SourceLink, but we don't support this yet for VS Code. |
Hello @gregg-miskelly ! Thanks! |
Hello again @gregg-miskelly ! I saw your PR #1446 about this. "unitTestDebugingOptions": {
"justMyCode": false
} on launch.json? Thanks! |
@bernardbr Correct. To be clear, in the "csharp" section. |
Oh, and to be clear, you add these under 'Preferences->Settings'. |
Thanks a lot @gregg-miskelly ! |
I can. Glad it worked! |
any update? i using github packages |
Hi!
I'm using an external class lib referenced via Nuget. The NuGet have a pdb file and I want to debug it. This NuGet package is mine too, and I have the source code.
How can I step into this external referenced class library when debugging?
Thanks!
The text was updated successfully, but these errors were encountered: