vscode-csharp: Error processing "configurationDone" request

Moved from Microsoft/vscode#25333 From @bhkeys


  • VSCode Version: 1.11
  • OS Version: CentOS7

Steps to Reproduce:

  1. Set up a .NET core project and install extension
  2. Build the project
  3. Try to debug it; you will get this error

selection_001

{
   // Use IntelliSense to find out which attributes exist for C# debugging
   // Use hover for the description of the existing attributes
   // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
   "version": "0.2.0",
   "configurations": [
        {
            "name": ".NET Core Launch (console)",
            "type": "coreclr",
            "request": "launch",
            "preLaunchTask": "build",
            // If you have changed target frameworks, make sure to update the program path.
            "program": "${workspaceRoot}/bin/Debug/netcoreapp1.1/core.dll",
            "args": [],
            "cwd": "${workspaceRoot}",
            // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
            "console": "internalConsole",
            "stopAtEntry": false,
            "internalConsoleOptions": "openOnSessionStart"
        },
        {
            "name": ".NET Core Attach",
            "type": "coreclr",
            "request": "attach",
            "processId": "${command:pickProcess}"
        }
    ]
}

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Comments: 21 (10 by maintainers)

Most upvoted comments

The .NET Core debugger the C# extension uses is a component that is shared across Visual Studio, Visual Studio for Mac, and Visual Studio Code. As such, it ships under a proprietary license that does not allow for it to be used with products other than the official Microsoft Visual Studio family (see https://github.com/OmniSharp/omnisharp-vscode/blob/master/RuntimeLicenses/license.txt and https://www.visualstudio.com/en-us/support/legal/mt644895).

This same thing is happening to me on the official version.