Running and debugging .net framework / asp.net (mvc / web api) applications on macOS / Linux / (etc unix-based OS) or how I've configured VS Code Remote Development over SSH.
Hello everyone, as a person who switched to unix systems in 2010, but a loving .net always lacked the main thing: to write and debug the code that I want on the system that I like. From 2010 to 2020, Microsoft has done a lot of work to take it for granted, but that's not the task, there are many legacy projects on the .net framework (hereinafter .net fx ), what about them? I have been tormented by this question for several years now, and so I finally solved it ... Meet: Microsoft Visual Studio Code: Remote Development over SSH The essence is very simple, in fact: VS Code via SSH connects to the host. Deploys its server there and connects to it. Executes all commands on the host and calculates the ports of the running software to your computer (client in this context). VS Code acts as a kind of client that natively (as far as this term is applicable to electron.js applications) exists on your computer. The experience itself is like running asp.net debugging on your comput...