|
|
|
|
|
by neonsunset
519 days ago
|
|
If you are referring to the debugger, they did not "add" it - it was like that from the start. The C# extension is MIT, but the 'vsdbg' it ships with isn't because it's a debugger Visual Studio uses made into a standalone cross-platform component. You can use an extension fork which swaps it with NetCoreDbg maintained by Samsung instead. This is what VSCodium uses. Also note that both of these essentially consume the debugger API exposed by the runtime itself, you can easily make one yourself in a weekend but no one bothered because there isn't much need for another one. |
|