Skip to content

interviewstreet/netcoredbg-theia-plugin

 
 

Repository files navigation

Debugger for .NET

This plug-in provides netcoredbg which implements VSCode Debug Adapter protocol and allows to debug .NET apps under .NET Core runtime.

Launch configuration

The base launch configuration looks like:

{
    "type": "netcoredbg",
    "request": "launch",
    "program": "${workspaceFolder}/bin/Debug/<target-framework>/<project-name.dll>",
    "args": [],
    "name": ".NET Core Launch (console)",
    "stopAtEntry": false,
    "console": "internalConsole"
}

Before debugging you need to build a project. The plugin provides a command to do that. For this you need to click F1 and select .Net: Build Project, after that select your project to build.

About

netcoredbg-theia-plugin

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 54.1%
  • TypeScript 45.9%