问题
I have made a .Net Core Web Application and deployed it on container running on Minikube VM. I want to debug that app, How can I do it using Visual Studio 2017?
回答1:
You can use vsdbg to debug any remote dotnet core process on Linux. Kubernetes Minikube uses Docker underneath and Docker container is in fact something like a Linux VM. I wrote a post about this on Medium.com if you need more details.
来源:https://stackoverflow.com/questions/46361844/how-to-debug-net-core-application-running-on-minikube-from-visual-studio-2017