I'm trying to step my debugger into a .dll library that I have installed from a private nuget repository in a separate solution.
The dll is one that I have written and the only times I've been able to successfully debug into it my method has been as follows:
- update version number on my dll project
- build and nuget push my package
- pull down said new version in the runnable project via visual studio's nuget GUI.
Unfortunately this does not always work and I am not sure what happens differently in the situations where it does and does not work.
I went through the above link and tried the things suggested as well as manually placing pdb files everywhere I thought VS may go to look for them but I've had no luck at all remote debugging outside of the steps I outlined above.
Can anyone provide me with a way to consistently debug into my library?
Unfortunatley pulling the library into the runnable solution is not an option for me. I do have access to make changes in my private nuget repository if there is a way to remotely host the pdb files with new dll versions.