How do you debug C # in Visual Studio code on Windows ?
I have a basic aspnet project, I can create and edit it in VS Code, and it works great.
I installed the C # Omnisharp extension in accordance with all the getting started instructions, and it is really easy to get, except for one extremely important thing ...
How do you debug it on Windows? Every post in an article / blog I met only shows C # debugging with OSX or Linux.
Debugging with Mono does not work, I get the following:
Mono Debug is not supported on this platform (Win32NT).
And you cannot install the Mono-Debugger extension on Windows - only OSX and Linux. What makes sense, but what are the steps for doing this on Windows?
I need to skip something very simple - how to configure C # debugging using Visual Studio code on Windows?
source share