I have .Net Core application which is using nuget package which is also created by me. I can debug nuget package code when I run app directly from visual studio (dotnet run ...), .pdb files are loaded. I added docker support and docker-compose to my solution and it work (app is running) but I can't debug my local nuget packages. Modules window is showing that .pdb file is not loaded because it was not copied to docker container I believe. Is there any way to debug local nuget packages when running in docker?
↧