How to Debug .Net Core Application Running on Minikube from Visual Studio 2017

Viewed 1619

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 Answers

Update for Visual Studio 2019: https://link.medium.com/rGycPY6NGdb


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.

Related