My application has a dependency of a nuget package I'm building locally in my machine. This nuget package contains a managed dll, its PDB and the source code indexed.
I'm already able to step into that dll methods while debugging and actually get to the source code. However I need to set a breakpoint in a specific method inside that dll, that I don't have any direct call for it (to step into).
EDIT: I'm using this command to pack the nuget package: dotnet pack MyProject.csproj --include-symbols --include-source
Is it even possible? How do I do that?